Fix error of run_python_script

This commit is contained in:
Cheng Zhao 2016-08-01 21:41:55 +09:00
parent 079a7a1a1c
commit d00bff4d94

View file

@ -126,8 +126,8 @@ def parse_args():
def run_python_script(script, *args):
script_path = os.path.join(SOURCE_ROOT, 'script', script),
return execute([sys.executable, script_path] + args)
script_path = os.path.join(SOURCE_ROOT, 'script', script)
return execute([sys.executable, script_path] + list(args))
def get_electron_build_version():