diff options
| author | Alex Gaynor <alex.gaynor@rd.io> | 2013-05-08 12:44:58 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@rd.io> | 2013-05-08 12:45:31 -0700 |
| commit | ea3a378c22c0a61715663b9bf807c786233f70c1 (patch) | |
| tree | cc2cdc3c5c69659d8ab47b16afecbf0eec2b2ffb | |
| parent | 7476d96f83a004d674244aeb7a66289035427396 (diff) | |
Added an HTTP status code to Django's WSGI application that was missing (reason unknown).
| -rw-r--r-- | django/core/handlers/wsgi.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/core/handlers/wsgi.py b/django/core/handlers/wsgi.py index 3c88aeac6d..c348c6c8da 100644 --- a/django/core/handlers/wsgi.py +++ b/django/core/handlers/wsgi.py @@ -57,6 +57,7 @@ STATUS_CODE_TEXT = { 415: 'UNSUPPORTED MEDIA TYPE', 416: 'REQUESTED RANGE NOT SATISFIABLE', 417: 'EXPECTATION FAILED', + 418: "I'M A TEAPOT", 422: 'UNPROCESSABLE ENTITY', 423: 'LOCKED', 424: 'FAILED DEPENDENCY', |
