From dbf1049c7934ff91b62c83c684ae5b320295cd49 Mon Sep 17 00:00:00 2001 From: asciimoo Date: Tue, 22 Oct 2013 23:36:10 +0200 Subject: [PATCH] [fix] debug print removed --- searx/engines/deviantart.py | 1 - 1 file changed, 1 deletion(-) diff --git a/searx/engines/deviantart.py b/searx/engines/deviantart.py index 95d96968d..9a4a8abde 100644 --- a/searx/engines/deviantart.py +++ b/searx/engines/deviantart.py @@ -25,6 +25,5 @@ def response(resp): title_links = result.xpath('.//span[@class="details"]//a[contains(@class, "t")]') title = ''.join(title_links[0].xpath('.//text()')) img_src = link.xpath('.//img')[0].attrib['src'] - print img_src results.append({'url': url, 'title': title, 'img_src': img_src, 'template': 'images.html'}) return results