Remove "UTC" from the isoformat since it already contains +0000.

This commit is contained in:
voussoir 2022-11-09 19:41:48 -08:00
parent fb2a5e9d56
commit e89d6fe10e

View file

@ -58,7 +58,7 @@ def join_and_trail(l, s):
@filter_function
def timestamp_to_8601(timestamp):
return timestamp.isoformat(' ') + ' UTC'
return timestamp.isoformat(' ')
@filter_function
def timestamp_strftime(timestamp, format):