Remove extra argument to method call
This commit is contained in:
parent
676aa8894c
commit
38f744195f
|
@ -88,7 +88,7 @@ class Textbox:
|
||||||
self.win.delch()
|
self.win.delch()
|
||||||
elif ch == ascii.ENQ: # ^e
|
elif ch == ascii.ENQ: # ^e
|
||||||
if self.stripspaces:
|
if self.stripspaces:
|
||||||
self.win.move(y, self.firstblank(y, maxx))
|
self.win.move(y, self.firstblank(y))
|
||||||
else:
|
else:
|
||||||
self.win.move(y, self.maxx)
|
self.win.move(y, self.maxx)
|
||||||
elif ch in (ascii.ACK, curses.KEY_RIGHT): # ^f
|
elif ch in (ascii.ACK, curses.KEY_RIGHT): # ^f
|
||||||
|
|
Loading…
Reference in New Issue