From 668571386926ff5453d0e11f59b0a89c0dc1dfa2 Mon Sep 17 00:00:00 2001 From: Loic Bistuer Date: Fri, 13 Dec 2013 03:23:24 +0700 Subject: Fixed E127 pep8 warnings. --- docs/_ext/djangodocs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/_ext/djangodocs.py') diff --git a/docs/_ext/djangodocs.py b/docs/_ext/djangodocs.py index 7ad058ff11..7c46f3287f 100644 --- a/docs/_ext/djangodocs.py +++ b/docs/_ext/djangodocs.py @@ -344,9 +344,9 @@ class DjangoStandaloneHTMLBuilder(StandaloneHTMLBuilder): xrefs = self.env.domaindata["std"]["objects"] templatebuiltins = { "ttags": [n for ((t, n), (l, a)) in xrefs.items() - if t == "templatetag" and l == "ref/templates/builtins"], + if t == "templatetag" and l == "ref/templates/builtins"], "tfilters": [n for ((t, n), (l, a)) in xrefs.items() - if t == "templatefilter" and l == "ref/templates/builtins"], + if t == "templatefilter" and l == "ref/templates/builtins"], } outfilename = os.path.join(self.outdir, "templatebuiltins.js") with open(outfilename, 'w') as fp: -- cgit v1.2.1