From 4c39c270af91ddbc213e077fc06b4bf67c7c6e99 Mon Sep 17 00:00:00 2001 From: Ian Foote Date: Sun, 29 Jun 2014 22:56:21 +0100 Subject: [PATCH] Add missing spaces to implicitly joined strings --- django/core/checks/compatibility/django_1_7_0.py | 4 ++-- 1 file 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',