Remove extra argument to method call

This commit is contained in:
Andrew M. Kuchling 2000-07-12 03:38:34 +00:00
parent 676aa8894c
commit 38f744195f

View file

@ -88,7 +88,7 @@ def do_command(self, ch):
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