1
0
mirror of https://github.com/django/django.git synced 2025-06-05 03:29:12 +00:00

[1.6.X] Added missing commas to list of strings

This commit is contained in:
Alasdair Nicol 2014-05-28 09:15:56 +01:00
parent 082920d827
commit c9a4c1d80b

View File

@ -43,8 +43,8 @@ def check_boolean_field_default_value():
"%s." % fieldnames, "%s." % fieldnames,
"In Django 1.6 the default value of BooleanField was changed from", "In Django 1.6 the default value of BooleanField was changed from",
"False to Null when Field.default isn't defined. See", "False to Null when Field.default isn't defined. See",
"https://docs.djangoproject.com/en/1.6/ref/models/fields/#booleanfield" "https://docs.djangoproject.com/en/1.6/ref/models/fields/#booleanfield",
"for more information." "for more information.",
] ]
return ' '.join(message) return ' '.join(message)