Allow utils.str.timestamp to take a struct_time as argument.

This commit is contained in:
Valentin Lorentz 2014-07-31 18:44:00 +02:00
parent c51876b4d6
commit af24192b0f
1 changed files with 2 additions and 1 deletions

View File

@ -374,7 +374,8 @@ registerChannelValue(supybot.reply.format, 'time',
def timestamp(t):
if t is None:
t = time.time()
t = time.localtime(t)
elif isinstance(t, int):
t = time.localtime(t)
format = get(supybot.reply.format.time, dynamic.channel)
return time.strftime(format, t)
utils.str.timestamp = timestamp