Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/tacanvas.py
diff options
context:
space:
mode:
Diffstat (limited to 'TurtleArt/tacanvas.py')
-rw-r--r--TurtleArt/tacanvas.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/TurtleArt/tacanvas.py b/TurtleArt/tacanvas.py
index 4b8e974..e1e229e 100644
--- a/TurtleArt/tacanvas.py
+++ b/TurtleArt/tacanvas.py
@@ -689,7 +689,7 @@ class TurtleGraphics:
(self.cx + x - self.tw.active_turtle.spr.rect.width / 2.,
self.cy + y - self.tw.active_turtle.spr.rect.height / 2.))
else:
- self.tw.active_turtle.move(self.cx + x, self.cy + y)
+ self.tw.active_turtle.move((self.cx + x, self.cy + y))
def get_color_index(self, r, g, b, a=0):
''' Find the closest palette entry to the rgb triplet '''