Skip to content

Commit

Permalink
Correct description of HTTP status code 308. (GH-15078)
Browse files Browse the repository at this point in the history
Permanent redirect was explained as a temporary redirect.
  • Loading branch information
FlorianWendelborn authored and benjaminp committed Aug 3, 2019
1 parent 9670ce7 commit 5c72bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/http/__init__.py
Expand Up @@ -59,7 +59,7 @@ def __new__(cls, value, phrase, description=''):
TEMPORARY_REDIRECT = (307, 'Temporary Redirect',
'Object moved temporarily -- see URI list')
PERMANENT_REDIRECT = (308, 'Permanent Redirect',
'Object moved temporarily -- see URI list')
'Object moved permanently -- see URI list')

# client error
BAD_REQUEST = (400, 'Bad Request',
Expand Down

0 comments on commit 5c72bad

Please sign in to comment.