Răsfoiți Sursa

Stopped calling get_models() for a side effect.

Aymeric Augustin 11 ani în urmă
părinte
comite
5892a83b18
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      django/core/management/commands/shell.py

+ 1 - 1
django/core/management/commands/shell.py

@@ -67,7 +67,7 @@ class Command(NoArgsCommand):
         # XXX: (Temporary) workaround for ticket #1796: force early loading of all
         # models from installed apps.
         from django.apps import apps
-        apps.get_models()
+        apps.populate_models()
 
         use_plain = options.get('plain', False)
         no_startup = options.get('no_startup', False)