diff options
-rw-r--r-- | server.py | 2 | ||||
-rw-r--r-- | youtube/util.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -84,7 +84,7 @@ def proxy_site(env, start_response, video=False): else: response, cleanup_func = util.fetch_url_response(url, send_headers) - response_headers = response.getheaders() + response_headers = response.headers if isinstance(response_headers, urllib3._collections.HTTPHeaderDict): response_headers = response_headers.items() if video: diff --git a/youtube/util.py b/youtube/util.py index e278a23..07d80b1 100644 --- a/youtube/util.py +++ b/youtube/util.py @@ -336,7 +336,7 @@ def fetch_url(url, headers=(), timeout=15, report_text=None, data=None, ) ) ): - print(response.status, response.reason, response.getheaders()) + print(response.status, response.reason, response.headers) ip = re.search( br'IP address: ((?:[\da-f]*:)+[\da-f]+|(?:\d+\.)+\d+)', content) |