Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pysamples
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2013-08-30 20:27:37 (GMT)
committer Walter Bender <walter@sugarlabs.org>2013-08-30 20:27:37 (GMT)
commite108487cff19177002f60f1d754f9a205fb91d15 (patch)
tree3aece82e3a02b1779e69871a7aaa5342e96671ec /pysamples
parentda8a3049fd259954e180e7ce33f90bb36f67f65a (diff)
parent75b09fa3329de3e2b9a856ba0263ce74d6b28f3f (diff)
merge from mzepf set_xy takes x, y instead of (x, y)
Diffstat (limited to 'pysamples')
-rw-r--r--pysamples/dotted_line.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pysamples/dotted_line.py b/pysamples/dotted_line.py
index c581f83..c0d3008 100644
--- a/pysamples/dotted_line.py
+++ b/pysamples/dotted_line.py
@@ -94,8 +94,8 @@
# fillscreen(self, c, s)
# tw.turtles.get_active_turtle().fillscreen(70, 90)
# Note: Fill the screen with color 70, shade 90 (light blue)
-# self.set_xy(self, (x, y))
-# tw.turtles.get_active_turtle().set_xy((100,100))
+# self.set_xy(self, x, y)
+# tw.turtles.get_active_turtle().set_xy(100,100)
# Note: Move the turtle to position (100, 100)
# self.get_xy tw.turtles.get_active_turtle().get_xy()[0]
# Note: The current x coordinate of the turtle