mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-23 00:03:33 +00:00
Fix for arguments not passed correctly to child process.
This commit is contained in:
parent
e124e1c3fd
commit
376ee719fb
1 changed files with 3 additions and 2 deletions
|
@ -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…
Reference in a new issue