From: Mike Bayer Date: Sun, 23 Nov 2014 15:33:47 +0000 (-0500) Subject: - use the correct method here; this needs to have some tests X-Git-Tag: rel_0_7_0~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69427188e66307378fa0e4cb8def77c065ae4251;p=thirdparty%2Fsqlalchemy%2Falembic.git - use the correct method here; this needs to have some tests --- diff --git a/alembic/migration.py b/alembic/migration.py index 60591bed..098cf691 100644 --- a/alembic/migration.py +++ b/alembic/migration.py @@ -261,7 +261,7 @@ class MigrationContext(object): """ heads = self.get_current_heads() head_maintainer = HeadMaintainer(self, heads) - for step in script_directory._steps_revs(revision, heads): + for step in script_directory._stamp_revs(revision, heads): head_maintainer.update_to_step(step) def run_migrations(self, **kw):