diff options
author | Georg Brandl <georg@python.org> | 2015-03-08 17:15:54 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2015-03-08 17:15:54 +0100 |
commit | 548a6dc22e4a3edff76413b6bdeedcf2b8c3f30c (patch) | |
tree | d41a62e8805c423e505d7f5c4d579aac13ae1511 /setup.py | |
parent | 3047a23a6613d74705b6373b03e8f78b82e3c1ce (diff) | |
download | sphinx-git-548a6dc22e4a3edff76413b6bdeedcf2b8c3f30c.tar.gz |
final pep8 fixes; reactivate most warnings in flake8
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -157,12 +157,12 @@ else: outfile = open(js_file, 'wb') try: - outfile.write('Documentation.addTranslations('); + outfile.write('Documentation.addTranslations(') dump(dict( messages=jscatalog, plural_expr=catalog.plural_expr, locale=str(catalog.locale) - ), outfile) + ), outfile) outfile.write(');') finally: outfile.close() |