소스 검색

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()