From f8a44d9e31e40fdf1e7b5867d21a0613acc618c2 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Tue, 22 Nov 2016 16:28:48 +0100 Subject: [PATCH] minor: fix whitespace with AssertionError (#570) --- django_filters/filterset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_filters/filterset.py b/django_filters/filterset.py index 66beff9..850554e 100644 --- a/django_filters/filterset.py +++ b/django_filters/filterset.py @@ -241,7 +241,7 @@ class BaseFilterSet(object): assert not (fields is None and exclude is None), \ "Setting 'Meta.model' without either 'Meta.fields' or 'Meta.exclude' " \ - "has been deprecated since 0.15.0 and is now disallowed. Add an explicit" \ + "has been deprecated since 0.15.0 and is now disallowed. Add an explicit " \ "'Meta.fields' or 'Meta.exclude' to the %s class." % cls.__name__ # Setting exclude with no fields implies all other fields.