From 22fa039f1b9e2506401a785304c491e6be8b9ca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Oudin?= Date: Mon, 26 Feb 2018 16:23:14 +0100 Subject: [PATCH] Remove debug print --- crawl/crawl.py | 1 - 1 file changed, 1 deletion(-) diff --git a/crawl/crawl.py b/crawl/crawl.py index 8754530..ad3c348 100644 --- a/crawl/crawl.py +++ b/crawl/crawl.py @@ -225,7 +225,6 @@ class PageGetter: scheduler.fetching() async with async_timeout.timeout(10): async with self.session.get(self.url, verify_ssl=ssl) as resp: - print("Resp status %s" % resp.status) try: return await resp.text() except UnicodeDecodeError: