diff options
author | Georg Brandl <georg@python.org> | 2010-10-22 11:20:52 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-22 11:20:52 +0200 |
commit | c48b67d3c9a25bf15e92627984ef220c44ec711f (patch) | |
tree | d6427c19684550ddb986db081c88d76480f6feaa /sphinx/ext/mathbase.py | |
parent | db8189083d6022a34b331d4c482776ba301eae1b (diff) | |
download | sphinx-git-c48b67d3c9a25bf15e92627984ef220c44ec711f.tar.gz |
Fix call.
Diffstat (limited to 'sphinx/ext/mathbase.py')
-rw-r--r-- | sphinx/ext/mathbase.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/ext/mathbase.py b/sphinx/ext/mathbase.py index 6c67265a1..4053dbe45 100644 --- a/sphinx/ext/mathbase.py +++ b/sphinx/ext/mathbase.py @@ -128,9 +128,9 @@ def texinfo_visit_math(self, node): raise nodes.SkipNode def texinfo_visit_displaymath(self, node): - self.visit_paragraph(self, node) + self.visit_paragraph(node) def texinfo_depart_displaymath(self, node): - self.depart_paragraph(self, node) + self.depart_paragraph(node) def texinfo_visit_eqref(self, node): self.body.append(node['target']) |