diff options
| author | Zach Wernberg <zawerny@gmail.com> | 2016-10-27 17:44:52 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-10-27 18:45:11 -0400 |
| commit | 92bcc9cfbfca77033be8d4b4aa3bed06406d7996 (patch) | |
| tree | 1be7959cfb0d7aad67ab8c848e10cee23f98b641 | |
| parent | 3ea9e3baf93c8f436a7799e6899afc8525b6d94a (diff) | |
[1.10.x] Corrected TooManyFieldsSent doctring for GET requests.
Backport of 6c994013e242bad67264d445b0bd4c0772bffdb4 from master
| -rw-r--r-- | django/core/exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
