Move db/models.py -> db/mongo/models.py

To my surprise, there was only ONE reference to models.py.
From open.py.
This commit is contained in:
Elrond 2011-12-20 20:41:21 +01:00
parent faf74067da
commit 4ae4012dad
2 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
import pymongo
import mongokit
from paste.deploy.converters import asint
from mediagoblin.db import models
from mediagoblin.db.mongo import models
def connect_database_from_config(app_config, use_pymongo=False):