diff options
| author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2019-08-26 12:10:59 +0000 |
|---|---|---|
| committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2019-08-26 12:10:59 +0000 |
| commit | 83bba3a37073a7c90e057d742e4e8965a0580088 (patch) | |
| tree | f5751fff9b0e24026443b6d9785441a9ced1d341 /docutils/utils/math | |
| parent | 334d3537daf24dd74f1555c416523d3e376232c9 (diff) | |
| download | docutils-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.py | 2 |
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 |
