From a6038109322ef4fef1e2648533545151fa58baec Mon Sep 17 00:00:00 2001 From: James Tait Date: Tue, 22 Mar 2016 09:42:44 +0000 Subject: [PATCH] Use abbreviated month name in tell output, to be less ambiguous. --- tell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tell.py b/tell.py index cb61b53..6717c95 100755 --- a/tell.py +++ b/tell.py @@ -100,7 +100,7 @@ def checktell(phenny, input): continue phenny.say("%s: %s <%s> %s" % ( input.nick, - time.strftime('%m-%d %H:%M UTC', time.gmtime(e[4])), + time.strftime('%b-%d %H:%M UTC', time.gmtime(e[4])), e[1], e[3])) r.append(e[0])