From 499fdf46711ae96f01b72e3c8cf6de89931bec41 Mon Sep 17 00:00:00 2001 From: jopohl Date: Tue, 26 Jul 2016 21:23:01 +0200 Subject: [PATCH] fix error message --- src/urh/plugins/PluginManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/urh/plugins/PluginManager.py b/src/urh/plugins/PluginManager.py index a71c9e76..2351bdae 100644 --- a/src/urh/plugins/PluginManager.py +++ b/src/urh/plugins/PluginManager.py @@ -44,7 +44,7 @@ class PluginManager(object): plugin.enabled = settings.value(plugin.name, type=bool) if plugin.name in settings.allKeys() else False result.append(plugin) except ImportError as e: - logger.error("Could not load plugin {0} ({1} [{2}])".format(d, e, e.msg)) + logger.error("Could not load plugin {0} ({1})".format(d, e)) continue return result