Commit c9a4c1d8 authored by Alasdair Nicol's avatar Alasdair Nicol
Browse files

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

parent 082920d8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)