From a310b5ab34f905460486878fb97facf56690676c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rnar=20Myrheim?= <45852703+Myrheimb@users.noreply.github.com> Date: Tue, 30 Apr 2019 18:37:11 +0200 Subject: [PATCH] Possible fix for #4945? Could the missing colon on line 612 be the reason for the missing reference in the docs as described in issue #4945? --- requests/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/models.py b/requests/models.py index 62dcd0b7..59aa7088 100644 --- a/requests/models.py +++ b/requests/models.py @@ -608,7 +608,7 @@ class Response(object): #: File-like object representation of response (for advanced usage). #: Use of ``raw`` requires that ``stream=True`` be set on the request. - # This requirement does not apply for use internally to Requests. + #: This requirement does not apply for use internally to Requests. self.raw = None #: Final URL location of Response.