aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2013-01-08 13:24:27 -0600
committerChristopher Allan Webber <cwebber@dustycloud.org>2013-01-08 13:24:27 -0600
commit8e7354ef2bc08531b7e733bea44835f016b3e821 (patch)
treecc8febd26fb4b65041a5b3d927dc0c410bcd5442
parent031d988c29c5466e4334d4f5bb6c402e2fb2f53b (diff)
downloadmediagoblin-8e7354ef2bc08531b7e733bea44835f016b3e821.tar.lz
mediagoblin-8e7354ef2bc08531b7e733bea44835f016b3e821.tar.xz
mediagoblin-8e7354ef2bc08531b7e733bea44835f016b3e821.zip
Fixing import to mediagoblin.db.base in stl models
Previously we had mediagoblin.db.sql.base, that just changed to drop the sql; fixing.
-rw-r--r--mediagoblin/media_types/stl/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/media_types/stl/models.py b/mediagoblin/media_types/stl/models.py
index 0ed4a2e5..17091f0e 100644
--- a/mediagoblin/media_types/stl/models.py
+++ b/mediagoblin/media_types/stl/models.py
@@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-from mediagoblin.db.sql.base import Base
+from mediagoblin.db.base import Base
from sqlalchemy import (
Column, Integer, Float, String, ForeignKey)