From cc9f1f0a2ca60691e45acadfae87f085351397f8 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 29 Oct 2013 17:10:59 +0100 Subject: [PATCH] Misc: Fix output of @version. --- plugins/Misc/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Misc/plugin.py b/plugins/Misc/plugin.py index 8e372d857..9ca4b0cdc 100644 --- a/plugins/Misc/plugin.py +++ b/plugins/Misc/plugin.py @@ -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))