don't crash when we parse arguments in history manager. Fixes #8959

This commit is contained in:
Yann Leboulanger 2018-03-17 22:16:54 +01:00
parent 9de427f6fa
commit 504bfef7db
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ def parseOpts():
config_path = None
try:
shortargs = 'hc:'
longargs = 'help config-path='
shortargs = 'hvc:l:p:'
longargs = 'help verbose config-path= loglevel= profile='
opts = getopt.getopt(sys.argv[1:], shortargs, longargs.split())[0]
except getopt.error as msg:
print(str(msg))