diff options
author | Sebastian Spaeth <Sebastian@SSpaeth.de> | 2013-01-07 13:03:51 +0100 |
---|---|---|
committer | Sebastian Spaeth <Sebastian@SSpaeth.de> | 2013-01-07 13:42:32 +0100 |
commit | 39dc3bf8db4a0a21220560a259574da4f2c1e12a (patch) | |
tree | 67d97368d31cd224845c214d34bf282d59601893 /mediagoblin/db/util.py | |
parent | a5acfe23fadc4772fdd6fd63091c32621b94d710 (diff) | |
download | mediagoblin-39dc3bf8db4a0a21220560a259574da4f2c1e12a.tar.lz mediagoblin-39dc3bf8db4a0a21220560a259574da4f2c1e12a.tar.xz mediagoblin-39dc3bf8db4a0a21220560a259574da4f2c1e12a.zip |
Mv db.sql.base to db.base
This concludes the db.sql.* -> db.* move. Our db abstraction layer is
sqlalchemy, so there is no need to a separate db.sql.* hierarchy.
All tests have been run for each of the commit series to make sure
everything works at every step.
Diffstat (limited to 'mediagoblin/db/util.py')
-rw-r--r-- | mediagoblin/db/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/db/util.py b/mediagoblin/db/util.py index 32dd0884..2017cfc0 100644 --- a/mediagoblin/db/util.py +++ b/mediagoblin/db/util.py @@ -14,7 +14,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. import sys -from mediagoblin.db.sql.base import Session +from mediagoblin.db.base import Session from mediagoblin.db.models import MediaEntry, Tag, MediaTag, Collection from mediagoblin.tools.common import simple_printer |