summaryrefslogtreecommitdiff
path: root/sphinx/jinja2glue.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-10-26 14:07:13 +0100
committerGeorg Brandl <georg@python.org>2009-10-26 14:07:13 +0100
commitf98a703ef3572ef7b4260405d0716fb60f6e01b0 (patch)
treea1ca8c4ddd1ac8aa387e4d4ee0a6093e8da3842b /sphinx/jinja2glue.py
parent3594104d4e114dc273a2d6115623ad108f19be68 (diff)
downloadsphinx-git-f98a703ef3572ef7b4260405d0716fb60f6e01b0.tar.gz
Make "make check" happy.
Diffstat (limited to 'sphinx/jinja2glue.py')
-rw-r--r--sphinx/jinja2glue.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/jinja2glue.py b/sphinx/jinja2glue.py
index e2c96a963..0a47b66d8 100644
--- a/sphinx/jinja2glue.py
+++ b/sphinx/jinja2glue.py
@@ -101,7 +101,8 @@ class BuiltinTemplateLoader(TemplateBridge, BaseLoader):
self.environment.globals['debug'] = contextfunction(pformat)
self.environment.globals['accesskey'] = contextfunction(accesskey)
if use_i18n:
- self.environment.install_gettext_translations(builder.app.translator)
+ self.environment.install_gettext_translations(
+ builder.app.translator)
def render(self, template, context):
return self.environment.get_template(template).render(context)