From b91d53dc6f2657ab0c190ccd1606d50df00dff84 Mon Sep 17 00:00:00 2001 From: Astound Date: Mon, 11 Mar 2024 09:47:35 +0800 Subject: Use response.headers instead of response.getheaders() response.getheaders() will be deprecated by urllib3. --- youtube/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'youtube/util.py') 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) -- cgit v1.2.3