From 9825356e955ebd2124c71402137cb9014040acf3 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 28 Oct 2003 14:23:12 +0000 Subject: [PATCH] Cleaned up error message when exceptions are raised on loading the plugin module. --- scripts/supybot-wizard | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/supybot-wizard b/scripts/supybot-wizard index f32571c74..5059e2c7e 100755 --- a/scripts/supybot-wizard +++ b/scripts/supybot-wizard @@ -67,9 +67,9 @@ def loadPlugin(name): you can always add it later.""") return None except Exception, e: - myPrint("""We encountered a bit of trouble trying to load that plugin. + myPrint("""We encountered a bit of trouble trying to load plugin %r. Python told us %s. We'll skip over it for now, you can always add it - later.""" % e) + later.""" % (name, repr(e))) return None def describePlugin(module, showUsage):