From 92bcc9cfbfca77033be8d4b4aa3bed06406d7996 Mon Sep 17 00:00:00 2001 From: Zach Wernberg Date: Thu, 27 Oct 2016 17:44:52 -0500 Subject: [PATCH] [1.10.x] Corrected TooManyFieldsSent doctring for GET requests. Backport of 6c994013e242bad67264d445b0bd4c0772bffdb4 from master --- django/core/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/exceptions.py b/django/core/exceptions.py index 5b125e6fd5..1e5227d80f 100644 --- a/django/core/exceptions.py +++ b/django/core/exceptions.py @@ -55,7 +55,7 @@ class DisallowedRedirect(SuspiciousOperation): class TooManyFieldsSent(SuspiciousOperation): """ - The number of fields in a POST request exceeded + The number of fields in a GET or POST request exceeded settings.DATA_UPLOAD_MAX_NUMBER_FIELDS. """ pass