From 99b120fd7a6beac9ce960162c0dc16be3e2acfec Mon Sep 17 00:00:00 2001 From: Byron Peebles Date: Mon, 20 Apr 2020 11:30:29 -0400 Subject: [PATCH] Add space after "," in warning message. --- rest_framework/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/checks.py b/rest_framework/checks.py index c1e626018..d5d77bc59 100644 --- a/rest_framework/checks.py +++ b/rest_framework/checks.py @@ -9,7 +9,7 @@ def pagination_system_check(app_configs, **kwargs): if api_settings.PAGE_SIZE and not api_settings.DEFAULT_PAGINATION_CLASS: errors.append( Warning( - "You have specified a default PAGE_SIZE pagination rest_framework setting," + "You have specified a default PAGE_SIZE pagination rest_framework setting, " "without specifying also a DEFAULT_PAGINATION_CLASS.", hint="The default for DEFAULT_PAGINATION_CLASS is None. " "In previous versions this was PageNumberPagination. "