From 6c994013e242bad67264d445b0bd4c0772bffdb4 Mon Sep 17 00:00:00 2001 From: Zach Wernberg Date: Thu, 27 Oct 2016 17:44:52 -0500 Subject: [PATCH] Corrected TooManyFieldsSent doctring for GET requests. --- 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 002631bbbde..47c5359c757 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