diff options
author | Georg Brandl <georg@python.org> | 2010-01-17 17:49:01 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-17 17:49:01 +0100 |
commit | 1ec19290e1446c43e4ac3ea576f2a1e8986a28ff (patch) | |
tree | 992fc5e75712239376d40add00cabcc6e9f30ad4 /sphinx/ext/pngmath.py | |
parent | c5d67b03219f3643ea9e250a7cd3cafd5aaf2efb (diff) | |
download | sphinx-git-1ec19290e1446c43e4ac3ea576f2a1e8986a28ff.tar.gz |
Rename os to osutil, thanks to relative imports.
Diffstat (limited to 'sphinx/ext/pngmath.py')
-rw-r--r-- | sphinx/ext/pngmath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/pngmath.py b/sphinx/ext/pngmath.py index 49f7b96d0..93fa301d8 100644 --- a/sphinx/ext/pngmath.py +++ b/sphinx/ext/pngmath.py @@ -23,8 +23,8 @@ except ImportError: from docutils import nodes from sphinx.errors import SphinxError -from sphinx.util.os import ensuredir, ENOENT from sphinx.util.png import read_png_depth, write_png_depth +from sphinx.util.osutil import ensuredir, ENOENT from sphinx.ext.mathbase import setup_math as mathbase_setup, wrap_displaymath class MathExtError(SphinxError): |