diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-07-12 03:38:34 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-07-12 03:38:34 (GMT) |
commit | 38f744195f0739289295bd46b04578e95b924285 (patch) | |
tree | 3284f44460235cad8e13e1a491ac2e7671ec3e4e /Lib/curses/textpad.py | |
parent | 676aa8894c82855fa41a52fad41d55ecd0e5e072 (diff) | |
download | cpython-38f744195f0739289295bd46b04578e95b924285.zip cpython-38f744195f0739289295bd46b04578e95b924285.tar.gz cpython-38f744195f0739289295bd46b04578e95b924285.tar.bz2 |
Remove extra argument to method call
Diffstat (limited to 'Lib/curses/textpad.py')
-rw-r--r-- | Lib/curses/textpad.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/curses/textpad.py b/Lib/curses/textpad.py index 97ee36b..0a53690 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 |