summaryrefslogtreecommitdiff
path: root/Lib/curses
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2000-07-12 03:38:34 +0000
committerAndrew M. Kuchling <amk@amk.ca>2000-07-12 03:38:34 +0000
commit38f744195f0739289295bd46b04578e95b924285 (patch)
tree3284f44460235cad8e13e1a491ac2e7671ec3e4e /Lib/curses
parent676aa8894c82855fa41a52fad41d55ecd0e5e072 (diff)
downloadcpython-git-38f744195f0739289295bd46b04578e95b924285.tar.gz
Remove extra argument to method call
Diffstat (limited to 'Lib/curses')
-rw-r--r--Lib/curses/textpad.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/curses/textpad.py b/Lib/curses/textpad.py
index 97ee36bdb5..0a53690df0 100644
--- a/Lib/curses/textpad.py
+++ b/Lib/curses/textpad.py
@@ -88,7 +88,7 @@ class Textbox:
self.win.delch()
elif ch == ascii.ENQ: # ^e
if self.stripspaces:
- self.win.move(y, self.firstblank(y, maxx))
+ self.win.move(y, self.firstblank(y))
else:
self.win.move(y, self.maxx)
elif ch in (ascii.ACK, curses.KEY_RIGHT): # ^f