Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2014-01-18 00:53:34 (GMT)
committer Walter Bender <walter@sugarlabs.org>2014-01-18 00:53:34 (GMT)
commit08ce7208268348e5de76918532c8a8cb220ca528 (patch)
tree3a4ab478b891db1b351b063508ff1e089a80eb32
parent04477876b2c04b7ad7f1eeb12d4739f1bb4a5478 (diff)
fix typo in fill_polygonv196
-rw-r--r--TurtleArt/tacollaboration.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/TurtleArt/tacollaboration.py b/TurtleArt/tacollaboration.py
index d0a41a3..acc03af 100644
--- a/TurtleArt/tacollaboration.py
+++ b/TurtleArt/tacollaboration.py
@@ -401,7 +401,7 @@ class Collaboration():
[nick, poly_points] = data_from_string(payload)
shared_poly_points = []
for i in range(len(poly_points)):
- x, y = self._turtles.screen_to_turtle_coordinates(
+ x, y = self._tw.turtles.screen_to_turtle_coordinates(
(poly_points[i][1], poly_points[i][2]))
if poly_points[i][0] in ['move', 'line']:
shared_poly_points.append((poly_points[i][0], x, y))