Преглед на файлове

[fix] debug print removed

asciimoo преди 11 години
родител
ревизия
dbf1049c79
променени са 1 файла, в които са добавени 0 реда и са изтрити 1 реда
  1. 0
    1
      searx/engines/deviantart.py

+ 0
- 1
searx/engines/deviantart.py Целия файл

@@ -25,6 +25,5 @@ def response(resp):
25 25
         title_links = result.xpath('.//span[@class="details"]//a[contains(@class, "t")]')
26 26
         title = ''.join(title_links[0].xpath('.//text()'))
27 27
         img_src = link.xpath('.//img')[0].attrib['src']
28
-        print img_src
29 28
         results.append({'url': url, 'title': title, 'img_src': img_src, 'template': 'images.html'})
30 29
     return results