From 8ee273b94956f4f6ac6aa27a294a4a0647363cf3 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 31 May 2014 09:46:29 +0300 Subject: [PATCH] src/conf.py: use ISO 8601 in reply.format.time. If I read the code for Time correctly, it uses this value by default. I think that this fixes #701 . --- src/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.py b/src/conf.py index 4b43f754d..ec69d1586 100644 --- a/src/conf.py +++ b/src/conf.py @@ -367,7 +367,7 @@ registerGroup(supybot.reply, 'format') registerChannelValue(supybot.reply.format, 'url', registry.String('<%s>', _("""Determines how urls should be formatted."""))) registerChannelValue(supybot.reply.format, 'time', - registry.String('%I:%M %p, %B %d, %Y', _("""Determines how timestamps + registry.String('%Y-%m-%d %H:%M:%S%z', _("""Determines how timestamps printed for human reading should be formatted. Refer to the Python documentation for the time module to see valid formatting characters for time formats.""")))