diff options
author | Loic Bistuer <loic.bistuer@sixmedia.com> | 2013-12-13 03:23:24 +0700 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2013-12-14 11:59:15 -0500 |
commit | 668571386926ff5453d0e11f59b0a89c0dc1dfa2 (patch) | |
tree | ab2cf4f5c32d966452ef01eee93c09642f769b6a /docs/_ext/djangodocs.py | |
parent | d599b590ebe6e2d3a60cf033de4d81c6b963bb04 (diff) | |
download | django-668571386926ff5453d0e11f59b0a89c0dc1dfa2.tar.gz |
Fixed E127 pep8 warnings.
Diffstat (limited to 'docs/_ext/djangodocs.py')
-rw-r--r-- | docs/_ext/djangodocs.py | 4 |
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: |