commit | bf9e966228c6faa440e1c9b5fa8c41d0be8a721b | [log] [tgz] |
---|---|---|
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Tue Jun 17 21:39:46 2008 +0000 |
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Tue Jun 17 21:39:46 2008 +0000 |
tree | 030b7bea1e92aee8b286e02bd7402ce48694b2fa | |
parent | 2ba198d2fbd8d4dd33d2c40af012d622eb03c18f [diff] [blame] |
Return the module at the end of its init function. "import _msi" used to raise a SystemError.
diff --git a/PC/_msi.c b/PC/_msi.c index ec6c203..a55aeca 100644 --- a/PC/_msi.c +++ b/PC/_msi.c
@@ -1065,5 +1065,5 @@ if (!MSIError) return NULL; PyModule_AddObject(m, "MSIError", MSIError); - return NULL; + return m; }