From 06eb73cffac218fb376b80e9c61c6018440dd99e Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Mon, 20 Feb 2017 11:10:22 +0000 Subject: [PATCH] remove debugging --- sourcing/url.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/sourcing/url.py b/sourcing/url.py index a8d7dc9..a4f733b 100644 --- a/sourcing/url.py +++ b/sourcing/url.py @@ -25,7 +25,6 @@ def get_text(url): } def get_url(url): - print('get_url:', url) item = Item.from_external(url) if item: return item.text @@ -41,5 +40,3 @@ def get_url(url): open(filename, 'wb').write(content) return content.decode(errors='replace') - -