Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TurtleArt/tawindow.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py
index 8a6cad5..b214dbb 100644
--- a/TurtleArt/tawindow.py
+++ b/TurtleArt/tawindow.py
@@ -2475,7 +2475,8 @@ class TurtleArtWindow():
return True
elif type(blk[1]) in [list, tuple] and blk[1][0] == 'turtle':
if blk[1][1] == DEFAULT_TURTLE:
- self.load_turtle(blk, self.nick)
+ if self.nick is not None and self.nick is not '':
+ self.load_turtle(blk, self.nick)
else:
self.load_turtle(blk, blk[1][1])
return True