Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/turtleart.py
diff options
context:
space:
mode:
Diffstat (limited to 'turtleart.py')
-rwxr-xr-xturtleart.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/turtleart.py b/turtleart.py
index 9669e21..52192d5 100755
--- a/turtleart.py
+++ b/turtleart.py
@@ -131,8 +131,8 @@ class TurtleMain():
try:
exec f in globals(), plugin
self._plugins.append(plugin.values()[0](self))
- except ImportError:
- print 'failed to import %s' % (P)
+ except ImportError as e:
+ print 'failed to import %s: %s' % (P, str(e))
def _run_plugins(self):
''' Tell the plugin about the TurtleWindow instance. '''