Fixing import to mediagoblin.db.base in stl models
authorChristopher Allan Webber <cwebber@dustycloud.org>
Tue, 8 Jan 2013 19:24:27 +0000 (13:24 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Tue, 8 Jan 2013 19:24:27 +0000 (13:24 -0600)
Previously we had mediagoblin.db.sql.base, that just changed to drop
the sql; fixing.

mediagoblin/media_types/stl/models.py

index 0ed4a2e508185247b621e444895f317a573f7ab5..17091f0ea0cea931c8bff96e8d0b3932c40ead4b 100644 (file)
@@ -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)