1
0
mirror of https://github.com/django/django.git synced 2025-03-14 03:10:45 +00:00

[1.7.x] Revert "Improved AppRegistryNotReady message."

This reverts commit 154f5f0de108f428de2d5f488e0264f4459a4b66.

Aymeric: "I chose not to talk about django.setup() here on purpose.
This will hardly always be the correct solution."

Backport of 8121860be4 from master
This commit is contained in:
Tim Graham 2014-10-04 13:13:54 -04:00
parent 154f5f0de1
commit 0dbf366d90

View File

@ -128,7 +128,7 @@ class Apps(object):
Raises an exception if all models haven't been imported yet.
"""
if not self.models_ready:
raise AppRegistryNotReady("Models aren't loaded yet. Ensure django.setup() has been called.")
raise AppRegistryNotReady("Models aren't loaded yet.")
def get_app_configs(self):
"""