1
0
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:
Dimitry Ishenko 2024-10-02 13:53:19 -04:00
parent aa1622260d
commit c6776e447a

View File

@ -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();