Remove debug print

This commit is contained in:
Rémi Oudin 2018-02-26 16:23:14 +01:00
parent e4ad8c7ce6
commit 22fa039f1b
1 changed files with 0 additions and 1 deletions

View File

@ -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: