Misc: Fix output of @version.

This commit is contained in:
Valentin Lorentz 2013-10-29 17:10:59 +01:00
parent e6bda5657e
commit cc9f1f0a2c

View File

@ -321,7 +321,7 @@ class Misc(callbacks.Plugin):
'from the Limnoria repository.')
s = _('The current (running) version of this Supybot is %s, '
'running on Python %s. %s') % \
(conf.version, sys.version, newest)
(conf.version, sys.version.replace('\n', ' '), newest)
irc.reply(s)
version = wrap(thread(version))