summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2015-03-08 17:15:54 +0100
committerGeorg Brandl <georg@python.org>2015-03-08 17:15:54 +0100
commit548a6dc22e4a3edff76413b6bdeedcf2b8c3f30c (patch)
treed41a62e8805c423e505d7f5c4d579aac13ae1511 /setup.py
parent3047a23a6613d74705b6373b03e8f78b82e3c1ce (diff)
downloadsphinx-git-548a6dc22e4a3edff76413b6bdeedcf2b8c3f30c.tar.gz
final pep8 fixes; reactivate most warnings in flake8
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 57af00f06..2ac7a193d 100644
--- a/setup.py
+++ b/setup.py
@@ -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()