Fix for arguments not passed correctly to child process.

pull/222/head
Louis Vézina 6 years ago
parent e124e1c3fd
commit 376ee719fb

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

Loading…
Cancel
Save