From 08ce7208268348e5de76918532c8a8cb220ca528 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Sat, 18 Jan 2014 00:53:34 +0000 Subject: fix typo in fill_polygon --- 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)) -- cgit v0.9.1