1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Kovid Goyal <kovid@kovidgoyal.net>
Date: Wed, 2 Nov 2022 08:16:41 +0530
Subject: Fix previous PR
---
mechanize/_debug.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/mechanize/_debug.py b/mechanize/_debug.py
index 8e3b098..7b50cbe 100644
--- a/mechanize/_debug.py
+++ b/mechanize/_debug.py
@@ -30,6 +30,5 @@ class HTTPRedirectDebugProcessor(BaseHandler):
info = logging.getLogger("mechanize.http_redirects").info
info("redirecting to %s", request.get_full_url())
return request
-
- https_response = http_response
-
+
+ https_request = http_request
|