]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo -- -e takes a flag, -h doesn't. Somehow the colon and the h
authorGuido van Rossum <guido@python.org>
Fri, 6 Mar 1998 17:44:57 +0000 (17:44 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 6 Mar 1998 17:44:57 +0000 (17:44 +0000)
got transposed.

Tools/freeze/freeze.py

index 77ad9984631ae334029dfc885ce5b267aef753e1..c0b5e54d98362020af1158b7ea8eb988995a0bec 100755 (executable)
@@ -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))