summaryrefslogtreecommitdiff
path: root/sphinx/websupport/storage/sqlalchemystorage.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-08-21 22:36:35 +0200
committerGeorg Brandl <georg@python.org>2010-08-21 22:36:35 +0200
commit2399e4627c40b373869da4409213475ade655846 (patch)
tree572132c497bf23782f4b64e6c4177e76b702b6f5 /sphinx/websupport/storage/sqlalchemystorage.py
parent092ebec8a7eb938a2c720d57b258bd6e106bff9e (diff)
downloadsphinx-git-2399e4627c40b373869da4409213475ade655846.tar.gz
Rename module to make clear it is only for sqlalchemy.
Diffstat (limited to 'sphinx/websupport/storage/sqlalchemystorage.py')
-rw-r--r--sphinx/websupport/storage/sqlalchemystorage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/websupport/storage/sqlalchemystorage.py b/sphinx/websupport/storage/sqlalchemystorage.py
index dea2eea02..6f13c91b6 100644
--- a/sphinx/websupport/storage/sqlalchemystorage.py
+++ b/sphinx/websupport/storage/sqlalchemystorage.py
@@ -22,8 +22,8 @@ if sqlalchemy.__version__[:3] < '0.5':
from sphinx.websupport.errors import CommentNotAllowedError, \
UserNotAuthorizedError
from sphinx.websupport.storage import StorageBackend
-from sphinx.websupport.storage.db import Base, Node, Comment, \
- CommentVote, Session
+from sphinx.websupport.storage.sqlalchemy_db import Base, Node, \
+ Comment, CommentVote, Session
from sphinx.websupport.storage.differ import CombinedHtmlDiff