Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b7da642

Browse files
committed
Fix typo -- -e takes a flag, -h doesn't. Somehow the colon and the h
got transposed.
1 parent 60cd813 commit b7da642

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/freeze/freeze.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def main():
105105

106106
# parse command line
107107
try:
108-
opts, args = getopt.getopt(sys.argv[1:], 'deh:mo:p:P:qs:w')
108+
opts, args = getopt.getopt(sys.argv[1:], 'de:hmo:p:P:qs:w')
109109
except getopt.error, msg:
110110
usage('getopt error: ' + str(msg))
111111

0 commit comments

Comments
 (0)