summaryrefslogtreecommitdiff
path: root/sphinx/ext/pngmath.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 /sphinx/ext/pngmath.py
parent3047a23a6613d74705b6373b03e8f78b82e3c1ce (diff)
downloadsphinx-git-548a6dc22e4a3edff76413b6bdeedcf2b8c3f30c.tar.gz
final pep8 fixes; reactivate most warnings in flake8
Diffstat (limited to 'sphinx/ext/pngmath.py')
-rw-r--r--sphinx/ext/pngmath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/pngmath.py b/sphinx/ext/pngmath.py
index b0d3fafbb..dd713cf4f 100644
--- a/sphinx/ext/pngmath.py
+++ b/sphinx/ext/pngmath.py
@@ -201,7 +201,7 @@ def html_visit_math(self, node):
self.body.append('<span class="math">%s</span>' %
self.encode(node['latex']).strip())
else:
- c = ('<img class="math" src="%s"' % fname) + get_tooltip(self, node)
+ c = ('<img class="math" src="%s"' % fname) + get_tooltip(self, node)
if depth is not None:
c += ' style="vertical-align: %dpx"' % (-depth)
self.body.append(c + '/>')