Remove "UTC" from the isoformat since it already contains +0000.
This commit is contained in:
parent
fb2a5e9d56
commit
e89d6fe10e
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ def join_and_trail(l, s):
|
||||||
|
|
||||||
@filter_function
|
@filter_function
|
||||||
def timestamp_to_8601(timestamp):
|
def timestamp_to_8601(timestamp):
|
||||||
return timestamp.isoformat(' ') + ' UTC'
|
return timestamp.isoformat(' ')
|
||||||
|
|
||||||
@filter_function
|
@filter_function
|
||||||
def timestamp_strftime(timestamp, format):
|
def timestamp_strftime(timestamp, format):
|
||||||
|
|
Loading…
Reference in a new issue