diff options
author | Michael W. Hudson <mwh@python.net> | 2004-08-07 15:20:15 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2004-08-07 15:20:15 (GMT) |
commit | 3fdd43ef3507d0db65cff4dd8252e35f7b81988f (patch) | |
tree | 428604db764699c9403bef1ddec12bba504a10e2 /Lib/curses | |
parent | 09ad235f9976d55944be3104d9911dab10c1fa55 (diff) | |
download | cpython-3fdd43ef3507d0db65cff4dd8252e35f7b81988f.zip cpython-3fdd43ef3507d0db65cff4dd8252e35f7b81988f.tar.gz cpython-3fdd43ef3507d0db65cff4dd8252e35f7b81988f.tar.bz2 |
Somehow (no idea how!) I missed half of patch #1005008. Sorry about that.
Diffstat (limited to 'Lib/curses')
-rw-r--r-- | Lib/curses/wrapper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/curses/wrapper.py b/Lib/curses/wrapper.py index 0d004e0..5335204 100644 --- a/Lib/curses/wrapper.py +++ b/Lib/curses/wrapper.py @@ -41,7 +41,7 @@ def wrapper(func, *args, **kwds): except: pass - return func(stdscr, *rest) + return func(stdscr, *args, **kwds) finally: # Set everything back to normal stdscr.keypad(0) |