From bd2e0f0d5c42be47c33e5d10a1909f65dc7ebdb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Thu, 5 Nov 2015 18:48:07 +0100 Subject: [PATCH] Added traceback to plugin activation --- senpy/extensions.py | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/senpy/extensions.py b/senpy/extensions.py index d6124b6..7be339e 100644 --- a/senpy/extensions.py +++ b/senpy/extensions.py @@ -136,6 +136,7 @@ class Senpy(object): except Exception as ex: logger.error("Error activating plugin {}: {}".format(plugin.name, ex)) + logger.error("Trace: {}".format(traceback.format_exc())) th = gevent.spawn(act) th.link_value(partial(self._set_active_plugin, plugin_name, True)) if sync: diff --git a/setup.py b/setup.py index cff5ca8..e7dc6d3 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ except AttributeError: install_reqs = [str(ir.req) for ir in install_reqs] test_reqs = [str(ir.req) for ir in test_reqs] -VERSION = "0.4.9" +VERSION = "0.4.10rc" setup( name='senpy',