You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bitcoind-ncurses2/util.py

8 lines
250 B
Python

def isoformatseconds(dt):
try:
return dt.isoformat(timespec="seconds")
except TypeError:
# Python 3.5 and below
# 'timespec' is an invalid keyword argument for this function
return dt.isoformat().split(".")[0]