From: Andrew M. Kuchling Date: Wed, 12 Jul 2000 03:38:34 +0000 (+0000) Subject: Remove extra argument to method call X-Git-Tag: v2.0b1~867 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=38f744195f0739289295bd46b04578e95b924285;p=thirdparty%2FPython%2Fcpython.git Remove extra argument to method call --- diff --git a/Lib/curses/textpad.py b/Lib/curses/textpad.py index 97ee36bdb565..0a53690df0bb 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