]> granicus.if.org Git - python/commitdiff
Remove extra argument to method call
authorAndrew M. Kuchling <amk@amk.ca>
Wed, 12 Jul 2000 03:38:34 +0000 (03:38 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Wed, 12 Jul 2000 03:38:34 +0000 (03:38 +0000)
Lib/curses/textpad.py

index 97ee36bdb5654a486dc2cf902cf8adc5fe1f6ec7..0a53690df0bbf698bfe848ba5bf0e085ce5486e4 100644 (file)
@@ -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