From: Guido van Rossum Date: Fri, 6 Mar 1998 17:44:57 +0000 (+0000) Subject: Fix typo -- -e takes a flag, -h doesn't. Somehow the colon and the h X-Git-Tag: v1.5.1~479 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b7da642e2e283e33445c318733348a1e765b0031;p=thirdparty%2FPython%2Fcpython.git Fix typo -- -e takes a flag, -h doesn't. Somehow the colon and the h got transposed. --- diff --git a/Tools/freeze/freeze.py b/Tools/freeze/freeze.py index 77ad9984631a..c0b5e54d9836 100755 --- a/Tools/freeze/freeze.py +++ b/Tools/freeze/freeze.py @@ -105,7 +105,7 @@ def main(): # parse command line try: - opts, args = getopt.getopt(sys.argv[1:], 'deh:mo:p:P:qs:w') + opts, args = getopt.getopt(sys.argv[1:], 'de:hmo:p:P:qs:w') except getopt.error, msg: usage('getopt error: ' + str(msg))