diff options
author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-02-17 22:11:14 +0000 |
---|---|---|
committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-02-18 01:58:05 +0000 |
commit | c8f4a03daceef4470ddbc34d5879ffd01588a116 (patch) | |
tree | b67cbca3c86b239e84e00b2ca5966e3c273ca18a /utils | |
parent | 8de6638697b8c785f8022e1f526b549e74d033d1 (diff) | |
download | sphinx-git-c8f4a03daceef4470ddbc34d5879ffd01588a116.tar.gz |
Fix COM812
Diffstat (limited to 'utils')
-rw-r--r-- | utils/babel_runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/babel_runner.py b/utils/babel_runner.py index 32e6fe642..0f0a438e4 100644 --- a/utils/babel_runner.py +++ b/utils/babel_runner.py @@ -97,7 +97,7 @@ class compile_catalog_plusjs(compile_catalog): obj = json.dumps({ 'messages': jscatalog, 'plural_expr': catalog.plural_expr, - 'locale': f'{catalog.locale!s}' + 'locale': f'{catalog.locale!s}', }, sort_keys=True, indent=4) with open(js_file, 'w', encoding='utf8') as outfile: outfile.write(f'Documentation.addTranslations({obj});') |