From 2e250b4378dbfbd2892d215d6add14cc91e2482a Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Mon, 11 Feb 2002 20:46:10 +0000 Subject: Fix bug #511786 (2.2.1 candidate): ensure that custom-supplied headers are preserved for redirected requests. --- Lib/urllib2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/urllib2.py b/Lib/urllib2.py index ffd73b8..512d90c 100644 --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -416,7 +416,7 @@ class HTTPRedirectHandler(BaseHandler): # XXX Probably want to forget about the state of the current # request, although that might interact poorly with other # handlers that also use handler-specific request attributes - new = Request(newurl, req.get_data()) + new = Request(newurl, req.get_data(), req.headers) new.error_302_dict = {} if hasattr(req, 'error_302_dict'): if len(req.error_302_dict)>10 or \ -- cgit v0.12