diff options
| author | Andrew M. Kuchling <amk@amk.ca> | 2000-07-12 03:38:34 +0000 |
|---|---|---|
| committer | Andrew M. Kuchling <amk@amk.ca> | 2000-07-12 03:38:34 +0000 |
| commit | bdbc047c3a17c279e2fd24d4815af4778d06c6f8 (patch) | |
| tree | a7c4a9388db0cf6d4180348d1db46cf9b1dff22f | |
| parent | 805e4b8563263dac3a29112e4b3f83f40b89818e (diff) | |
| download | cpython-bdbc047c3a17c279e2fd24d4815af4778d06c6f8.tar.gz | |
Remove extra argument to method call
| -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 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 |
