瀏覽代碼

Using UTC for times, that seems to look better.

root 4 年之前
父節點
當前提交
48de3536af
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      messages.py

+ 2 - 1
messages.py

@@ -14,7 +14,8 @@ app = Flask(__name__, static_url_path=base_path + "/static")
 
 @app.template_filter("datefmt")
 def format_datetime(value):
-    dt = pendulum.from_timestamp(value, tz=pendulum.tz.local_timezone())
+    # dt = pendulum.from_timestamp(value, tz=pendulum.tz.local_timezone())
+    dt = pendulum.from_timestamp(value)
     return dt.to_datetime_string()