From: Brendan Gann Date: Tue, 14 Feb 2023 15:35:16 +0000 (+0000) Subject: Merge command passes string "config" instead of object to template X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1176%2Fhead;p=thirdparty%2Fsqlalchemy%2Falembic.git Merge command passes string "config" instead of object to template --- diff --git a/alembic/command.py b/alembic/command.py index d2c5c85f..a8e56571 100644 --- a/alembic/command.py +++ b/alembic/command.py @@ -322,7 +322,7 @@ def merge( script = ScriptDirectory.from_config(config) template_args = { - "config": "config" # Let templates use config for + "config": config # Let templates use config for # e.g. multiple databases } return script.generate_revision(