summaryrefslogtreecommitdiff
path: root/utils/babel_runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/babel_runner.py')
-rw-r--r--utils/babel_runner.py2
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});')