8000 Correct description of HTTP status code 308. (GH-15078) · python/cpython@5c72bad · GitHub
[go: up one dir, main page]

Skip to content

Commit 5c72bad

Browse files
FlorianWendelbornbenjaminp
authored andcommitted
Correct description of HTTP status code 308. (GH-15078)
Permanent redirect was explained as a temporary redirect.
1 parent 9670ce7 commit 5c72bad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/http/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def __new__(cls, value, phrase, description=''):
5959
TEMPORARY_REDIRECT = (307, 'Temporary Redirect',
6060
'Object moved temporarily -- see URI list')
6161
PERMANENT_REDIRECT = (308, 'Permanent Redirect',
62-
'Object moved temporarily -- see URI list')
62+
'Object moved permanently -- see URI list')
6363

6464
# client error
6565
BAD_REQUEST = (400, 'Bad Request',

0 commit comments

Comments
 (0)
0