From 97adfc2bf8393d1128917ea1f57f3c3a7ef8caa6 Mon Sep 17 00:00:00 2001 From: Yazhong Liu Date: Fri, 20 Jun 2014 22:23:37 +0800 Subject: [PATCH] Added HTTP 308 status and its description. --- django/http/response.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/http/response.py b/django/http/response.py index 27d99a621d2..b3f44cdf92b 100644 --- a/django/http/response.py +++ b/django/http/response.py @@ -42,6 +42,7 @@ REASON_PHRASES = { 305: 'USE PROXY', 306: 'RESERVED', 307: 'TEMPORARY REDIRECT', + 308: 'PERMANENT REDIRECT', 400: 'BAD REQUEST', 401: 'UNAUTHORIZED', 402: 'PAYMENT REQUIRED',