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:44:52 -0400 |
| commit | 6c994013e242bad67264d445b0bd4c0772bffdb4 (patch) | |
| tree | 4af9f084016a744e74e3aa1ea8181ea98c879dd8 | |
| parent | c7f86d3eec84aeff83fc01f12990edb329ec2c4d (diff) | |
Corrected TooManyFieldsSent doctring for GET requests.
| -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 002631bbbd..47c5359c75 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 |
