diff options
-rw-r--r-- | plugins/pychrysalide/helpers.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/plugins/pychrysalide/helpers.c b/plugins/pychrysalide/helpers.c index 0ca133f..d361c3e 100644 --- a/plugins/pychrysalide/helpers.c +++ b/plugins/pychrysalide/helpers.c @@ -273,12 +273,6 @@ PyObject *run_python_method(PyObject *module, const char *method, PyObject *args PyErr_Restore(type, value, traceback); - if (result == NULL && PyErr_Occurred() != NULL) - PyErr_Print(); - - if (result == NULL) - Py_Exit(EXIT_FAILURE); - return result; } |