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.
This commit is contained in:
Mikaela Suomalainen 2015-01-05 20:56:41 +02:00
parent fca473c043
commit 048b00b4a3
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ registerGroup(supybot.reply, 'format')
registerChannelValue(supybot.reply.format, 'url', registerChannelValue(supybot.reply.format, 'url',
registry.String('<%s>', _("""Determines how urls should be formatted."""))) registry.String('<%s>', _("""Determines how urls should be formatted.""")))
registerChannelValue(supybot.reply.format, 'time', 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 printed for human reading should be formatted. Refer to the Python
documentation for the time module to see valid formatting characters for documentation for the time module to see valid formatting characters for
time formats."""))) time formats.""")))