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):