From 6c9b03f70c61cbe6bddd65ea00f385f2d9936f1e Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sun, 10 Nov 2013 17:48:09 +0100 Subject: [PATCH] PluginDownloader: Fix traceback printing. --- plugins/PluginDownloader/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/PluginDownloader/plugin.py b/plugins/PluginDownloader/plugin.py index 7191ce0d2..cec393ebb 100644 --- a/plugins/PluginDownloader/plugin.py +++ b/plugins/PluginDownloader/plugin.py @@ -308,7 +308,7 @@ class PluginDownloader(callbacks.Plugin): irc.replySuccess() except Exception as e: import traceback - traceback.print_exc(e) + traceback.print_exc() log.error(str(e)) irc.error('The plugin could not be installed. Check the logs ' 'for a more detailed error.')