mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Allow utils.str.timestamp to take a struct_time as argument.
This commit is contained in:
parent
c51876b4d6
commit
af24192b0f
@ -374,6 +374,7 @@ registerChannelValue(supybot.reply.format, 'time',
|
||||
def timestamp(t):
|
||||
if t is None:
|
||||
t = time.time()
|
||||
elif isinstance(t, int):
|
||||
t = time.localtime(t)
|
||||
format = get(supybot.reply.format.time, dynamic.channel)
|
||||
return time.strftime(format, t)
|
||||
|
Loading…
Reference in New Issue
Block a user