diff options
author | LeSasse <l.sasse@fz-juelich.de> | 2024-03-27 09:46:10 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-03-28 08:45:18 +0100 |
commit | 2db078c582fb254bc02322af41bda2a43dd91313 (patch) | |
tree | 00dcbe222fbe89ac6a8687ed59a07cc1d6d063f1 /bin/update | |
parent | 623ae0a44f55ca4bf6f99a0ea0e0dbe55a95ec67 (diff) |
tdf#158803 statement ends with an unnessary semicolon
Change-Id: Id67e1a7f944f0aa1aaa5d598305727c913d823cb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165376
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'bin/update')
-rwxr-xr-x | bin/update/create_partial_update.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update/create_partial_update.py b/bin/update/create_partial_update.py index 8c49bd9159fd..3d9f459f1fdf 100755 --- a/bin/update/create_partial_update.py +++ b/bin/update/create_partial_update.py @@ -67,7 +67,7 @@ def main(): 'see also': '', 'update': get_file_info(mar_file, base_url), 'languages': {} - }; + } with open(os.path.join(update_dir, channel), "w") as f: json.dump(data, f, indent=4) |