From cf6a886915f6bef6eeef8041804e316038955402 Mon Sep 17 00:00:00 2001 From: Brendan Gann Date: Tue, 14 Feb 2023 15:35:16 +0000 Subject: [PATCH] Merge command passes string "config" instead of object to template --- alembic/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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( -- 2.47.2