From: Jeremy Hylton Date: Tue, 25 Jul 2000 14:34:38 +0000 (+0000) Subject: a couple of nits from Patch #100933 X-Git-Tag: v2.0b1~721 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0365180a74904c1b6ac186e9edb923afed59aa84;p=thirdparty%2FPython%2Fcpython.git a couple of nits from Patch #100933 --- diff --git a/Lib/base64.py b/Lib/base64.py index 5ef2081c881a..ae67f68eccb3 100755 --- a/Lib/base64.py +++ b/Lib/base64.py @@ -53,10 +53,10 @@ def test(): except getopt.error, msg: sys.stdout = sys.stderr print msg - print """usage: basd64 [-d] [-e] [-u] [-t] [file|-] + print """usage: %s [-d|-e|-u|-t] [file|-] -d, -u: decode -e: encode (default) - -t: decode string 'Aladdin:open sesame'""" + -t: encode and decode string 'Aladdin:open sesame'"""%sys.argv[0] sys.exit(2) func = encode for o, a in opts: