summaryrefslogtreecommitdiff
path: root/searx/engines/deviantart.py
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2013-10-22 23:36:10 +0200
committerasciimoo <asciimoo@gmail.com>2013-10-22 23:36:10 +0200
commitdbf1049c7934ff91b62c83c684ae5b320295cd49 (patch)
treece4b7de927daed29b2fc78a5b31bf91d279d4e62 /searx/engines/deviantart.py
parent0d6368a0923e7f10f6d971225e27c66e53197d00 (diff)
downloadsearxng-dbf1049c7934ff91b62c83c684ae5b320295cd49.tar.gz
searxng-dbf1049c7934ff91b62c83c684ae5b320295cd49.zip
[fix] debug print removed
Diffstat (limited to 'searx/engines/deviantart.py')
-rw-r--r--searx/engines/deviantart.py1
1 files changed, 0 insertions, 1 deletions
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