summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-06-28 20:23:25 (GMT)
committerGeorg Brandl <georg@python.org>2006-06-28 20:23:25 (GMT)
commit1be63af41d3a21f98b8514cfd059df453afb7039 (patch)
treea09e65be37b360c948343f6b060420ff5c3f57b4 /Lib
parentecfec78b7b79ebacbc45e72f6f487ab89e5fd8d7 (diff)
downloadcpython-1be63af41d3a21f98b8514cfd059df453afb7039.zip
cpython-1be63af41d3a21f98b8514cfd059df453afb7039.tar.gz
cpython-1be63af41d3a21f98b8514cfd059df453afb7039.tar.bz2
Fix end_fill().
Diffstat (limited to 'Lib')
-rw-r--r--Lib/lib-tk/turtle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py
index d186ac6..0fe83a3 100644
--- a/Lib/lib-tk/turtle.py
+++ b/Lib/lib-tk/turtle.py
@@ -721,7 +721,7 @@ def color(*args): _getpen().color(*args)
def write(arg, move=0): _getpen().write(arg, move)
def fill(flag): _getpen().fill(flag)
def begin_fill(): _getpen().begin_fill()
-def end_fill(): _getpen.end_fill()
+def end_fill(): _getpen().end_fill()
def circle(radius, extent=None): _getpen().circle(radius, extent)
def goto(*args): _getpen().goto(*args)
def heading(): return _getpen().heading()