summaryrefslogtreecommitdiff
path: root/docutils/utils/math
diff options
context:
space:
mode:
authormilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2019-08-26 12:10:59 +0000
committermilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2019-08-26 12:10:59 +0000
commit83bba3a37073a7c90e057d742e4e8965a0580088 (patch)
treef5751fff9b0e24026443b6d9785441a9ced1d341 /docutils/utils/math
parent334d3537daf24dd74f1555c416523d3e376232c9 (diff)
downloaddocutils-83bba3a37073a7c90e057d742e4e8965a0580088.tar.gz
py3: Use new style classes
Signed-off-by: Stephen Finucane <stephen@that.guru> git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8345 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/utils/math')
-rw-r--r--docutils/utils/math/latex2mathml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docutils/utils/math/latex2mathml.py b/docutils/utils/math/latex2mathml.py
index 661e6770e..982b3d6c1 100644
--- a/docutils/utils/math/latex2mathml.py
+++ b/docutils/utils/math/latex2mathml.py
@@ -155,7 +155,7 @@ negatables = {'=': u'\u2260',
r'\equiv': u'\u2262'}
# LaTeX to MathML translation stuff:
-class math:
+class math(object):
"""Base class for MathML elements."""
nchildren = 1000000