diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-07 05:39:17 (GMT) |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-07 05:39:17 (GMT) |
commit | b4e4165b96a66a69825ef80b2af7b24cf50f3035 (patch) | |
tree | 6e39b082d5094173f9f7e13ac34355bc2078e404 /Lib | |
parent | 5fe60e7a4c2bd25f2edeafcb00f294715255eb29 (diff) | |
download | cpython-b4e4165b96a66a69825ef80b2af7b24cf50f3035.zip cpython-b4e4165b96a66a69825ef80b2af7b24cf50f3035.tar.gz cpython-b4e4165b96a66a69825ef80b2af7b24cf50f3035.tar.bz2 |
minor error in uudecode main error handling
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/uu.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -151,7 +151,7 @@ def test(): (options, args) = parser.parse_args() if len(args) > 2: - p.error('incorrect number of arguments') + parser.error('incorrect number of arguments') sys.exit(1) input = sys.stdin |