Merge pull request #703 from Mkaysi/time

src/conf.py: use ISO 8601 in reply.format.time.
This commit is contained in:
Valentin Lorentz 2014-05-31 09:15:19 +02:00
commit 733422fcb5

View File

@ -367,7 +367,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('%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 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.""")))