summaryrefslogtreecommitdiff
path: root/searx/engines/boardreader.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/engines/boardreader.py')
-rw-r--r--searx/engines/boardreader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/boardreader.py b/searx/engines/boardreader.py
index 9b56295b3..b5baa5c3f 100644
--- a/searx/engines/boardreader.py
+++ b/searx/engines/boardreader.py
@@ -104,7 +104,7 @@ def response(resp: "SXNG_Response") -> EngineResults:
title=_remove_keyword_marker(result["Subject"]),
content=_remove_keyword_marker(result["Text"]),
url=result["Url"],
- publishedDate=datetime.strptime(result["Published"], "%Y-%m-%d %H:%M:%S"),
+ publishedDate=datetime.fromisoformat(result["Published"]),
metadata=gettext.gettext("Posted by {author}").format(author=result["Author"]),
)
)