From a48736fc09db8ebe2e90a2e0b7bbd5fbf4083f36 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Wed, 2 Mar 2016 16:08:12 -0800 Subject: [PATCH] typo fix: Set sqlalchemy.url, not qlalchemy.url --- mediagoblin/db/migration_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediagoblin/db/migration_tools.py b/mediagoblin/db/migration_tools.py index a28b3db0..bd242894 100644 --- a/mediagoblin/db/migration_tools.py +++ b/mediagoblin/db/migration_tools.py @@ -47,7 +47,7 @@ class AlembicMigrationManager(object): self.alembic_cfg = Config(alembic_cfg_path) self.alembic_cfg.attributes["session"] = self.session - self.alembic_cfg.set_main_option("qlalchemy.url", str(self.engine.url)) + self.alembic_cfg.set_main_option("sqlalchemy.url", str(self.engine.url)) def get_current_revision(self): context = MigrationContext.configure(self.session.bind) -- 2.25.1