summaryrefslogtreecommitdiff
path: root/docs/_ext/djangodocs.py
diff options
context:
space:
mode:
authorLoic Bistuer <loic.bistuer@sixmedia.com>2013-12-13 03:23:24 +0700
committerTim Graham <timograham@gmail.com>2013-12-14 11:59:15 -0500
commit668571386926ff5453d0e11f59b0a89c0dc1dfa2 (patch)
treeab2cf4f5c32d966452ef01eee93c09642f769b6a /docs/_ext/djangodocs.py
parentd599b590ebe6e2d3a60cf033de4d81c6b963bb04 (diff)
downloaddjango-668571386926ff5453d0e11f59b0a89c0dc1dfa2.tar.gz
Fixed E127 pep8 warnings.
Diffstat (limited to 'docs/_ext/djangodocs.py')
-rw-r--r--docs/_ext/djangodocs.py4
1 files changed, 2 insertions, 2 deletions
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: