summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Foote <python@ian.feete.org>2014-06-29 22:56:21 +0100
committerIan Foote <python@ian.feete.org>2014-06-29 22:56:21 +0100
commit4c39c270af91ddbc213e077fc06b4bf67c7c6e99 (patch)
treea3917cd1907ed72a003f9c4032cff6dc46dab653
parent985ad99a7110e44ade26370e73ac9fdcae9628b8 (diff)
Add missing spaces to implicitly joined strings
-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',