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/plugins/oauth/models.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/plugins/oauth/models.py')
-rw-r--r-- | mediagoblin/plugins/oauth/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/plugins/oauth/models.py b/mediagoblin/plugins/oauth/models.py index f52a8ce9..695dad31 100644 --- a/mediagoblin/plugins/oauth/models.py +++ b/mediagoblin/plugins/oauth/models.py @@ -19,7 +19,7 @@ import bcrypt from datetime import datetime, timedelta -from mediagoblin.db.sql.base import Base +from mediagoblin.db.base import Base from mediagoblin.db.models import User from sqlalchemy import ( |