summaryrefslogtreecommitdiffstats
path: root/Lib/uu.py
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-04-07 05:39:17 (GMT)
committerAnthony Baxter <anthonybaxter@gmail.com>2006-04-07 05:39:17 (GMT)
commitb4e4165b96a66a69825ef80b2af7b24cf50f3035 (patch)
tree6e39b082d5094173f9f7e13ac34355bc2078e404 /Lib/uu.py
parent5fe60e7a4c2bd25f2edeafcb00f294715255eb29 (diff)
downloadcpython-b4e4165b96a66a69825ef80b2af7b24cf50f3035.zip
cpython-b4e4165b96a66a69825ef80b2af7b24cf50f3035.tar.gz
cpython-b4e4165b96a66a69825ef80b2af7b24cf50f3035.tar.bz2
minor error in uudecode main error handling
Diffstat (limited to 'Lib/uu.py')
-rwxr-xr-xLib/uu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/uu.py b/Lib/uu.py
index 62448aa..3ccedb0 100755
--- a/Lib/uu.py
+++ b/Lib/uu.py
@@ -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