diff --git a/bonobo/core/contexts.py b/bonobo/core/contexts.py index 5768202..3a35241 100644 --- a/bonobo/core/contexts.py +++ b/bonobo/core/contexts.py @@ -74,8 +74,8 @@ class PluginExecutionContext: try: self.plugin.run(self) - except Exception as exc: - print('error', type(exc), exc) + except Exception as exc: # pylint: disable=broad-except + self.handle_error(exc, traceback.format_exc()) sleep(0.25)