summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
Diffstat (limited to 'django')
-rw-r--r--django/apps/registry.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/django/apps/registry.py b/django/apps/registry.py
index 55116e2809..fe53d965de 100644
--- a/django/apps/registry.py
+++ b/django/apps/registry.py
@@ -211,7 +211,9 @@ class Apps(object):
if (model.__name__ == app_models[model_name].__name__ and
model.__module__ == app_models[model_name].__module__):
warnings.warn(
- "Model '%s.%s' was already registered." % (model_name, app_label),
+ "Model '%s.%s' was already registered. "
+ "Reloading models is not advised as it can lead to inconsistencies, "
+ "most notably with related models." % (model_name, app_label),
RuntimeWarning, stacklevel=2)
else:
raise RuntimeError(