From 41a3884b4c55487ba465037fea43da920c8e6920 Mon Sep 17 00:00:00 2001 From: Marcin Kuzminski Date: Thu, 9 Feb 2012 01:02:16 +0200 Subject: [PATCH] fixed typo --- alembic/templates/pylons/env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alembic/templates/pylons/env.py b/alembic/templates/pylons/env.py index e25d64dc..0b8cca52 100644 --- a/alembic/templates/pylons/env.py +++ b/alembic/templates/pylons/env.py @@ -62,7 +62,7 @@ def run_migrations_online(): # engine = meta.engine raise NotImplementedError("Please specify engine connectivity here") - if isintance(engine, Engine): + if isinstance(engine, Engine): connection = engine.connect() else: raise Exception( -- 2.47.2