Commit 0365180a authored by Jeremy Hylton's avatar Jeremy Hylton

a couple of nits from Patch #100933

parent 334fb898
...@@ -53,10 +53,10 @@ def test(): ...@@ -53,10 +53,10 @@ def test():
except getopt.error, msg: except getopt.error, msg:
sys.stdout = sys.stderr sys.stdout = sys.stderr
print msg print msg
print """usage: basd64 [-d] [-e] [-u] [-t] [file|-] print """usage: %s [-d|-e|-u|-t] [file|-]
-d, -u: decode -d, -u: decode
-e: encode (default) -e: encode (default)
-t: decode string 'Aladdin:open sesame'""" -t: encode and decode string 'Aladdin:open sesame'"""%sys.argv[0]
sys.exit(2) sys.exit(2)
func = encode func = encode
for o, a in opts: for o, a in opts:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment