Merge pull request #273 from dmishe/py3_introspection_regression

[py3] Fixed installed_models filtering.
This commit is contained in:
Alex Gaynor 2012-08-16 00:09:39 -07:00
commit 71d07fb048
1 changed files with 1 additions and 1 deletions

View File

@ -991,7 +991,7 @@ class BaseDatabaseIntrospection(object):
for model in models.get_models(app):
if router.allow_syncdb(self.connection.alias, model):
all_models.append(model)
tables = map(self.table_name_converter, tables)
tables = list(map(self.table_name_converter, tables))
return set([
m for m in all_models
if self.table_name_converter(m._meta.db_table) in tables