diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-08-06 22:48:39 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-08-06 22:49:33 +0200 |
commit | f79258444185f3d6939facb3cab071ad92d873e4 (patch) | |
tree | bd8184a001c318d219cbaa994bb304ee79ecd566 /bin/update | |
parent | 1a4351a6a142389071ba3ad8400c14894fa6e4d4 (diff) |
updater: fix small python issue
Change-Id: I0834a088af1527e4ed0d181f9e3a63ee82d0e980
Diffstat (limited to 'bin/update')
-rwxr-xr-x | bin/update/create_build_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update/create_build_config.py b/bin/update/create_build_config.py index 80e8fbab8156..7cc8ac4be15e 100755 --- a/bin/update/create_build_config.py +++ b/bin/update/create_build_config.py @@ -41,7 +41,7 @@ def main(argv): extra_data_files = ['complete_info.json', 'partial_update_info.json'] if sys.platform != "cygwin": - extra_data_files += 'complete_lang_info.json' + extra_data_files.append('complete_lang_info.json') for extra_file in extra_data_files: extra_file_path = os.path.join(argv[5], extra_file) |