From: Mike Bayer Date: Sun, 29 Mar 2015 13:33:27 +0000 (-0400) Subject: - repair name of starting_rev argument, fixes #290 X-Git-Tag: rel_0_7_6~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54e4f58d1f5315a6bb4c579d1ac8cdb802e7439e;p=thirdparty%2Fsqlalchemy%2Falembic.git - repair name of starting_rev argument, fixes #290 --- diff --git a/docs/build/offline.rst b/docs/build/offline.rst index 9948ede7..1be4a4a2 100644 --- a/docs/build/offline.rst +++ b/docs/build/offline.rst @@ -63,7 +63,7 @@ treat a local file in the same way ``alembic_version`` works:: current_version = open(version_file).read() else: current_version = None - context.configure(dialect_name=engine.name, starting_version=current_version) + context.configure(dialect_name=engine.name, starting_rev=current_version) context.run_migrations() end_version = context.get_revision_argument() if end_version and end_version != current_version: