mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
Merge pull request #333 from dimitry-ishenko-ubuntu/fix-hooks-py
[python] Fix hooks.py detection
This commit is contained in:
commit
71dbfc62be
@ -143,7 +143,7 @@ hooks_module_exists(void)
|
||||
|
||||
result = PyObject_CallMethod(imp_module, "find_spec", "s", "hooks");
|
||||
if (result) {
|
||||
found_hooks = 1;
|
||||
found_hooks = (result != Py_None);
|
||||
goto end;
|
||||
} else if (PyErr_ExceptionMatches(PyExc_ImportError)) {
|
||||
PyErr_Clear();
|
||||
|
Loading…
x
Reference in New Issue
Block a user