From ea3a378c22c0a61715663b9bf807c786233f70c1 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 8 May 2013 12:44:58 -0700 Subject: [PATCH] Added an HTTP status code to Django's WSGI application that was missing (reason unknown). --- django/core/handlers/wsgi.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/core/handlers/wsgi.py b/django/core/handlers/wsgi.py index 3c88aeac6d1..c348c6c8daa 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',