don't crash when we parse arguments in history manager. Fixes #8959
This commit is contained in:
parent
9de427f6fa
commit
504bfef7db
|
@ -44,8 +44,8 @@ def parseOpts():
|
||||||
config_path = None
|
config_path = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
shortargs = 'hc:'
|
shortargs = 'hvc:l:p:'
|
||||||
longargs = 'help config-path='
|
longargs = 'help verbose config-path= loglevel= profile='
|
||||||
opts = getopt.getopt(sys.argv[1:], shortargs, longargs.split())[0]
|
opts = getopt.getopt(sys.argv[1:], shortargs, longargs.split())[0]
|
||||||
except getopt.error as msg:
|
except getopt.error as msg:
|
||||||
print(str(msg))
|
print(str(msg))
|
||||||
|
|
Loading…
Reference in New Issue