# HG changeset patch # User Nicolas Saunier # Date 1274219639 14400 # Node ID e47168f6b6942bec7fef7f2a4653c1116ab8279f # Parent 0d321c23d337df84de739d898e3f7cd4439b280a corrected printing bug diff -r 0d321c23d337 -r e47168f6b694 python/moving.py --- a/python/moving.py Tue May 18 17:35:09 2010 -0400 +++ b/python/moving.py Tue May 18 17:53:59 2010 -0400 @@ -173,7 +173,7 @@ [float(n) for n in line2.split(' ')]] def __str__(self): - return ' '.join(map(utils.printPoint, self.positions[0], self.positions[1])) + return ' '.join([self.__getitem__(i).__str__() for i in xrange(self.length())]) def __getitem__(self, i): return Point(self.positions[0][i], self.positions[1][i])