#3969: fix typo in turtle.py.

This commit is contained in:
Georg Brandl 2008-09-26 07:14:57 +00:00
parent d1c7d07d67
commit 00d71436c7
1 changed files with 1 additions and 1 deletions

View File

@ -762,7 +762,7 @@ def setup(**geometry):
startx = geometry.get('startx', _startx)
if startx >= 0 or startx == None:
_startx = _startx
_startx = startx
else:
raise ValueError, "startx can not be less than 0"