summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/checks/compatibility/django_1_7_0.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/checks/compatibility/django_1_7_0.py b/django/core/checks/compatibility/django_1_7_0.py
index 7340be6915..d164241a55 100644
--- a/django/core/checks/compatibility/django_1_7_0.py
+++ b/django/core/checks/compatibility/django_1_7_0.py
@@ -23,10 +23,10 @@ def _check_middleware_classes(app_configs=None, **kwargs):
return [
Warning(
"MIDDLEWARE_CLASSES is not set.",
- hint=("Django 1.7 changed the global defaults for the MIDDLEWARE_CLASSES."
+ hint=("Django 1.7 changed the global defaults for the MIDDLEWARE_CLASSES. "
"django.contrib.sessions.middleware.SessionMiddleware, "
"django.contrib.auth.middleware.AuthenticationMiddleware, and "
- "django.contrib.messages.middleware.MessageMiddleware were removed from the defaults."
+ "django.contrib.messages.middleware.MessageMiddleware were removed from the defaults. "
"If your project needs these middleware then you should configure this setting."),
obj=None,
id='1_7.W001',