summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/pychrysalide/helpers.c6
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;
}