summaryrefslogtreecommitdiff
path: root/sphinx/web/admin.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-01-16 20:27:25 +0000
committerGeorg Brandl <georg@python.org>2008-01-16 20:27:25 +0000
commitb09e628b0f33614e81521ad60e94472a0db09a4d (patch)
tree9fde04d85255a2f7569f8f10def1f2cfe70f303e /sphinx/web/admin.py
parent1fbdc410b71ab6515ad576ef277700b9dba92d47 (diff)
downloadsphinx-git-b09e628b0f33614e81521ad60e94472a0db09a4d.tar.gz
A few refactorings in Sphinx.
Diffstat (limited to 'sphinx/web/admin.py')
-rw-r--r--sphinx/web/admin.py6
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):