From 56698d57691af2272f695f8c17c835ed99545cde Mon Sep 17 00:00:00 2001 From: Ammar Askar Date: Tue, 5 Nov 2019 18:29:33 -0500 Subject: bpo-38696: Fix usage example of HTTPStatus (GH-17066) --- Doc/library/http.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/http.rst b/Doc/library/http.rst index 8df1457..0e3441c 100644 --- a/Doc/library/http.rst +++ b/Doc/library/http.rst @@ -38,7 +38,7 @@ associated messages through the :class:`http.HTTPStatus` enum: >>> HTTPStatus.OK == 200 True - >>> http.HTTPStatus.OK.value + >>> HTTPStatus.OK.value 200 >>> HTTPStatus.OK.phrase 'OK' -- cgit v0.12