From: Georg Brandl Date: Fri, 26 Sep 2008 07:14:57 +0000 (+0000) Subject: #3969: fix typo in turtle.py. X-Git-Tag: v2.5.3c1~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=00d71436c7968452b875bf999a06130502469bf8;p=python #3969: fix typo in turtle.py. --- diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index fcde9af4ed..6bc3760947 100644 --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py @@ -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"