From: Adam Parkin Date: Mon, 12 Jul 2021 19:39:19 +0000 (-0700) Subject: Correct typo in documention, closes #872 X-Git-Tag: rel_1_7_0~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8917b3532da6dabc07187adf597573624b32fe3c;p=thirdparty%2Fsqlalchemy%2Falembic.git Correct typo in documention, closes #872 --- diff --git a/docs/build/autogenerate.rst b/docs/build/autogenerate.rst index 4a5b27ac..ba2540c7 100644 --- a/docs/build/autogenerate.rst +++ b/docs/build/autogenerate.rst @@ -356,7 +356,7 @@ full example of omitting tables with schema support may look like:: target_metadata = MyModel.metadata def include_name(name, type_, parent_names): - if type == "schema": + if type_ == "schema": return name in [None, "schema_one", "schema_two"] elif type_ == "table": # use schema_qualified_table_name directly