diff options
author | Georg Brandl <georg@python.org> | 2010-01-17 17:35:12 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-17 17:35:12 +0100 |
commit | c5d67b03219f3643ea9e250a7cd3cafd5aaf2efb (patch) | |
tree | ee780928dd0b074cc00ce45370ae79a9908749ac /sphinx/builders/changes.py | |
parent | 744a519c9234910eacd638abed7c0a947344f464 (diff) | |
download | sphinx-git-c5d67b03219f3643ea9e250a7cd3cafd5aaf2efb.tar.gz |
Refactor util package.
Diffstat (limited to 'sphinx/builders/changes.py')
-rw-r--r-- | sphinx/builders/changes.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py index 3bc51d43d..63e8084ee 100644 --- a/sphinx/builders/changes.py +++ b/sphinx/builders/changes.py @@ -14,7 +14,8 @@ from os import path from cgi import escape from sphinx import package_dir -from sphinx.util import ensuredir, os_path, copy_static_entry +from sphinx.util import copy_static_entry +from sphinx.util.os import ensuredir, os_path from sphinx.theming import Theme from sphinx.builders import Builder from sphinx.util.console import bold |