diff options
author | Tom Cocagne <devnull@localhost> | 2011-02-16 23:47:59 -0500 |
---|---|---|
committer | Tom Cocagne <devnull@localhost> | 2011-02-16 23:47:59 -0500 |
commit | c540d788ac288f5d94acbf932f4541dc61ad63c6 (patch) | |
tree | bf3bf34cee2f8a62e0f978e10c9ad1218d82ffdc | |
parent | b3c127bcba8abaaee24b78289eb628f9d002545b (diff) |
minor bugfix to extension module initialization
-rw-r--r-- | _srp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1539,7 +1539,7 @@ init_srp(void) } - if (PyType_Ready(&PyVerifier_Type) < 0 || PyType_Ready(&PyUser_Type)) + if (PyType_Ready(&PyVerifier_Type) < 0 || PyType_Ready(&PyUser_Type) < 0) return; m = Py_InitModule3("_srp", srp_module_methods,"SRP-6a implementation"); |