diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2020-01-08 19:22:24 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-01-08 19:22:24 +0100 |
| commit | f20193155a831b7628903909c372bf0873d93260 (patch) | |
| tree | bb54aaa9e54f60c0b44e689ce4ef996046a73c64 | |
| parent | 4139c63d23a1f4cc427eb428bcff0594c395c1c5 (diff) | |
| parent | 68abe6ff11f22f7af18e15fac3ab24f3b4700574 (diff) | |
Merge branch 'master' of https://github.com/asciimoo/searx into filtron
| -rw-r--r-- | searx/engines/flickr_noapi.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/engines/flickr_noapi.py b/searx/engines/flickr_noapi.py index e1abb378f..c8ee34f7a 100644 --- a/searx/engines/flickr_noapi.py +++ b/searx/engines/flickr_noapi.py @@ -118,9 +118,9 @@ def response(resp): 'template': 'images.html' } try: - result['author'] = author.encode('utf-8') - result['title'] = title.encode('utf-8') - result['content'] = content.encode('utf-8') + result['author'] = author + result['title'] = title + result['content'] = content except: result['author'] = '' result['title'] = '' |