]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Fix typo (#1688)
authorlaggardkernel <laggardkernel@users.noreply.github.com>
Wed, 16 Jun 2021 05:52:39 +0000 (13:52 +0800)
committerGitHub <noreply@github.com>
Wed, 16 Jun 2021 05:52:39 +0000 (07:52 +0200)
httpx/_models.py

index e406907241ef6b4830538fedfd54689813c97210..06ebb92c42ad391ce100d8351510c68efe0640c2 100644 (file)
@@ -1678,10 +1678,10 @@ class Cookies(MutableMapping):
         """
         Loads any cookies based on the response `Set-Cookie` headers.
         """
-        urlib_response = self._CookieCompatResponse(response)
+        urllib_response = self._CookieCompatResponse(response)
         urllib_request = self._CookieCompatRequest(response.request)
 
-        self.jar.extract_cookies(urlib_response, urllib_request)  # type: ignore
+        self.jar.extract_cookies(urllib_response, urllib_request)  # type: ignore
 
     def set_cookie_header(self, request: Request) -> None:
         """