From 048b00b4a3db3e41fe77bde6c7e03ecb935b148b Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Mon, 5 Jan 2015 20:56:41 +0200 Subject: [PATCH] src/conf.py: update reply.time.format I am not fully sure on this change, but T is the official separator between date and time and `date -Is` uses it. --- src/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.py b/src/conf.py index 793749828..84d65bc52 100644 --- a/src/conf.py +++ b/src/conf.py @@ -371,7 +371,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('%Y-%m-%d %H:%M:%S%z', _("""Determines how timestamps + registry.String('%Y-%m-%dT%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.""")))