summaryrefslogtreecommitdiff
path: root/searx/engines/open_meteo.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/engines/open_meteo.py')
-rw-r--r--searx/engines/open_meteo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/open_meteo.py b/searx/engines/open_meteo.py
index 66817d5c9..c1b0ca567 100644
--- a/searx/engines/open_meteo.py
+++ b/searx/engines/open_meteo.py
@@ -112,7 +112,7 @@ def response(resp):
table_content = generate_condition_table(hourly_data)
- infobox += f"<h3>{datetime.utcfromtimestamp(time).strftime('%Y-%m-%d %H:%M')}</h3>"
+ infobox += f"<h3>{datetime.fromtimestamp(time).strftime('%Y-%m-%d %H:%M')}</h3>"
infobox += f"<table><tbody>{table_content}</tbody></table>"
return [{'infobox': 'Open Meteo', 'content': infobox}]