summaryrefslogtreecommitdiff
path: root/Lib/lib-tk
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-06-28 20:23:25 +0000
committerGeorg Brandl <georg@python.org>2006-06-28 20:23:25 +0000
commita938a94026d7c46048131d2b7fff8ad0d9951e79 (patch)
tree28faaae06f9ea12431173a67522920d1bccdb400 /Lib/lib-tk
parent3e4963177d5853154f5fb7dc5be4c93988829eba (diff)
downloadcpython-a938a94026d7c46048131d2b7fff8ad0d9951e79.tar.gz
Fix end_fill().
Diffstat (limited to 'Lib/lib-tk')
-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 d186ac6312..0fe83a3df8 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()