Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/talogo.py
diff options
context:
space:
mode:
Diffstat (limited to 'talogo.py')
-rw-r--r--talogo.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/talogo.py b/talogo.py
index 09c18b4..ec63d42 100644
--- a/talogo.py
+++ b/talogo.py
@@ -402,7 +402,6 @@ class LogoCode:
self.procstop = False
list = self.readline(str)
self.step = self.start_eval(list)
- # self.tw.turtle_list.show_all()
"""
Convert the pseudocode into a list of commands.
@@ -574,11 +573,11 @@ class LogoCode:
print "step is None"
return False
except StopIteration:
- self.tw.active_turtle.show()
+ self.tw.turtle_list.show_all()
return False
except logoerror, e:
self.showlabel(str(e)[1:-1])
- self.tw.active_turtle.show()
+ self.tw.turtle_list.show_all()
return False
return True