]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- use the correct method here; this needs to have some tests
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 23 Nov 2014 15:33:47 +0000 (10:33 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 23 Nov 2014 15:33:47 +0000 (10:33 -0500)
alembic/migration.py

index 60591bed3662803fc471d9d94e01b7dddeefc42a..098cf6918799b52c5d80745033e2f18317730981 100644 (file)
@@ -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):