Fix for arguments not passed correctly to child process.

This commit is contained in:
Louis Vézina 2018-10-16 21:55:30 -04:00
parent e124e1c3fd
commit 376ee719fb
1 changed files with 3 additions and 2 deletions

View File

@ -16,6 +16,9 @@ except getopt.GetoptError:
sys.exit(2) sys.exit(2)
for opt, arg in opts: for opt, arg in opts:
arguments.append(opt) arguments.append(opt)
if arg != '':
arguments.append(arg)
if opt == '-h': if opt == '-h':
print 'bazarr.py -h --no-update --config <config_directory>' print 'bazarr.py -h --no-update --config <config_directory>'
sys.exit() sys.exit()
@ -23,8 +26,6 @@ for opt, arg in opts:
no_update = True no_update = True
elif opt in ("--config"): elif opt in ("--config"):
config_dir = arg config_dir = arg
elif arg != '':
arguments.append(arg)
dir_name = os.path.dirname(__file__) dir_name = os.path.dirname(__file__)