diff options
author | Georg Brandl <georg@python.org> | 2008-01-16 20:27:25 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-16 20:27:25 +0000 |
commit | b09e628b0f33614e81521ad60e94472a0db09a4d (patch) | |
tree | 9fde04d85255a2f7569f8f10def1f2cfe70f303e /sphinx/web/admin.py | |
parent | 1fbdc410b71ab6515ad576ef277700b9dba92d47 (diff) | |
download | sphinx-git-b09e628b0f33614e81521ad60e94472a0db09a4d.tar.gz |
A few refactorings in Sphinx.
Diffstat (limited to 'sphinx/web/admin.py')
-rw-r--r-- | sphinx/web/admin.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/web/admin.py b/sphinx/web/admin.py index 80f847b63..12004475b 100644 --- a/sphinx/web/admin.py +++ b/sphinx/web/admin.py @@ -9,9 +9,9 @@ :license: BSD. """ -from .util import render_template -from .wsgiutil import Response, RedirectResponse, NotFound -from .database import Comment +from sphinx.web.util import render_template +from sphinx.web.wsgiutil import Response, RedirectResponse, NotFound +from sphinx.web.database import Comment class AdminPanel(object): |