Remove extra argument to method call
diff --git a/Lib/curses/textpad.py b/Lib/curses/textpad.py
index 97ee36b..0a53690 100644
--- a/Lib/curses/textpad.py
+++ b/Lib/curses/textpad.py
@@ -88,7 +88,7 @@
             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