From 00d71436c7968452b875bf999a06130502469bf8 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 26 Sep 2008 07:14:57 +0000 Subject: [PATCH] #3969: fix typo in turtle.py. --- Lib/lib-tk/turtle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.50.0