From b4e4165b96a66a69825ef80b2af7b24cf50f3035 Mon Sep 17 00:00:00 2001 From: Anthony Baxter Date: Fri, 7 Apr 2006 05:39:17 +0000 Subject: [PATCH] minor error in uudecode main error handling --- Lib/uu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/uu.py b/Lib/uu.py index 62448aa9b3..3ccedb0b1d 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 -- 2.50.1