From c9a4c1d80bd6118fdf028965a750cdaad0550b76 Mon Sep 17 00:00:00 2001 From: Alasdair Nicol Date: Wed, 28 May 2014 09:15:56 +0100 Subject: [PATCH] [1.6.X] Added missing commas to list of strings --- django/core/checks/compatibility/django_1_6_0.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/core/checks/compatibility/django_1_6_0.py b/django/core/checks/compatibility/django_1_6_0.py index ef182bf48ff..b89d7da1896 100644 --- a/django/core/checks/compatibility/django_1_6_0.py +++ b/django/core/checks/compatibility/django_1_6_0.py @@ -43,8 +43,8 @@ def check_boolean_field_default_value(): "%s." % fieldnames, "In Django 1.6 the default value of BooleanField was changed from", "False to Null when Field.default isn't defined. See", - "https://docs.djangoproject.com/en/1.6/ref/models/fields/#booleanfield" - "for more information." + "https://docs.djangoproject.com/en/1.6/ref/models/fields/#booleanfield", + "for more information.", ] return ' '.join(message)