Fixed a misplaced parenthesis.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11746 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
2dfe3ad657
commit
468ca16319
|
@ -65,7 +65,7 @@ class Command(NoArgsCommand):
|
||||||
opts = model._meta
|
opts = model._meta
|
||||||
if (connection.introspection.table_name_converter(opts.db_table) in tables or
|
if (connection.introspection.table_name_converter(opts.db_table) in tables or
|
||||||
(opts.auto_created and
|
(opts.auto_created and
|
||||||
connection.introspection.table_name_converter(opts.auto_created._meta.db_table in tables))):
|
connection.introspection.table_name_converter(opts.auto_created._meta.db_table) in tables)):
|
||||||
continue
|
continue
|
||||||
sql, references = connection.creation.sql_create_model(model, self.style, seen_models)
|
sql, references = connection.creation.sql_create_model(model, self.style, seen_models)
|
||||||
seen_models.add(model)
|
seen_models.add(model)
|
||||||
|
|
Loading…
Reference in New Issue