Fix typo -- -e takes a flag, -h doesn't. Somehow the colon and the h
got transposed.
This commit is contained in:
parent
60cd813810
commit
b7da642e2e
|
@ -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))
|
||||
|
||||
|
|
Loading…
Reference in New Issue