Import MigrationManager from mongo in mongo backend.
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Mon, 2 Jan 2012 15:02:02 +0000 (16:02 +0100)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Wed, 4 Jan 2012 21:31:52 +0000 (22:31 +0100)
Inside the mongo db backend, use the mongo
MigrationManager. This is hopefully the last reference to
the generic MigrationManager reference on db.util.

mediagoblin/db/mongo/open.py
mediagoblin/db/util.py

index 8016ced95cfff9c518fe7f919c5f295383e29e5e..48c909d9b67def135a64a5a57ed8d9ab890e7292 100644 (file)
@@ -18,7 +18,7 @@ import pymongo
 import mongokit
 from paste.deploy.converters import asint
 from mediagoblin.db.mongo import models
-from mediagoblin.db.util import MigrationManager
+from mediagoblin.db.mongo.util import MigrationManager
 
 
 def connect_database_from_config(app_config, use_pymongo=False):
index 3fd96a1dd1cd291fb3cfd1c341bcce242b7aad29..1df9494ca2e8fd15b4ef317ce5a1ab785ba21385 100644 (file)
@@ -14,5 +14,5 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-from mediagoblin.db.mongo.util import (MigrationManager, ObjectId, InvalidId,
+from mediagoblin.db.mongo.util import (ObjectId, InvalidId,
     DESCENDING)