diff options
| author | Ian Kelly <ian.g.kelly@gmail.com> | 2009-11-18 21:39:07 +0000 |
|---|---|---|
| committer | Ian Kelly <ian.g.kelly@gmail.com> | 2009-11-18 21:39:07 +0000 |
| commit | 468ca16319977628bdae2be527514a30b35dd6fa (patch) | |
| tree | 272ea1135c875e2c0a49ddb9f59898345b95d6b4 | |
| parent | 2dfe3ad657f4372618ba9df8fc7e298511113dd4 (diff) | |
Fixed a misplaced parenthesis.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11746 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/core/management/commands/syncdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/syncdb.py b/django/core/management/commands/syncdb.py index 165006efd1..989a946151 100644 --- a/django/core/management/commands/syncdb.py +++ b/django/core/management/commands/syncdb.py @@ -65,7 +65,7 @@ class Command(NoArgsCommand): opts = model._meta if (connection.introspection.table_name_converter(opts.db_table) in tables or (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 sql, references = connection.creation.sql_create_model(model, self.style, seen_models) seen_models.add(model) |
