From cac07a517ea14285af715375838ff7e064a6bc1c Mon Sep 17 00:00:00 2001 From: ricterz Date: Sat, 9 Nov 2024 11:51:03 +0800 Subject: [PATCH] remove debug print --- nhentai/downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nhentai/downloader.py b/nhentai/downloader.py index a8e0e2f..b4cc211 100644 --- a/nhentai/downloader.py +++ b/nhentai/downloader.py @@ -69,7 +69,7 @@ class Downloader(Singleton): if response.status_code != 200: path = urlparse(url).path for mirror in constant.IMAGE_URL_MIRRORS: - print(f'{mirror}{path}') + # print(f'{mirror}{path}') mirror_url = f'{mirror}{path}' response = request('get', mirror_url, stream=True, timeout=self.timeout, proxies=proxy)