Commit 71d07fb0 authored by Alex Gaynor's avatar Alex Gaynor
Browse files

Merge pull request #273 from dmishe/py3_introspection_regression

[py3] Fixed installed_models filtering.
parents befa1dd7 4412de5d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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