Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 173b744e authored by Markus Heiser's avatar Markus Heiser
Browse files

[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: default avatarMarkus Heiser <markus.heiser@darmarit.de>
parent 219af243
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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'],