mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
[py3] Fixed installed_models filtering.
This commit is contained in:
parent
befa1dd7a5
commit
4412de5d8d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue