Browse Source

[fix] digg - the ISO time stamp of published date has been changed

Error pattern::

    Engines cannot retrieve results:
    digg (unexpected crash time data '2020-10-16T14:09:55Z' does not match format '%Y-%m-%d %H:%M:%S')

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Markus Heiser 4 years ago
parent
commit
173b744ef0
1 changed files with 2 additions and 1 deletions
  1. 2 1
      searx/engines/digg.py

+ 2 - 1
searx/engines/digg.py

@@ -54,7 +54,8 @@ def response(resp):
     # parse results
     for result in search_result['mapped']:
 
-        published = datetime.strptime(result['created']['ISO'], "%Y-%m-%d %H:%M:%S")
+        # 'created': {'ISO': '2020-10-16T14:09:55Z', ...}
+        published = datetime.strptime(result['created']['ISO'], "%Y-%m-%dT%H:%M:%SZ")
         # append result
         results.append({'url': result['url'],
                         'title': result['title'],