Fixing import to mediagoblin.db.base in stl models

Previously we had mediagoblin.db.sql.base, that just changed to drop
the sql; fixing.
This commit is contained in:
Christopher Allan Webber 2013-01-08 13:24:27 -06:00
parent 031d988c29
commit 8e7354ef2b

View 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)