mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
[python] Fix hooks.py detection
This commit is contained in:
parent
aa1622260d
commit
c6776e447a
@ -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