From f97db31533dd66dbffc2c7779ed21c87ae13d563 Mon Sep 17 00:00:00 2001 From: James Lu Date: Fri, 2 Jun 2017 08:46:37 -0700 Subject: [PATCH] Irc: show the current encoding setting in fullVersion() --- classes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes.py b/classes.py index 1b78b71..0c033b4 100644 --- a/classes.py +++ b/classes.py @@ -1013,7 +1013,7 @@ class Irc(utils.DeprecatedAttributesObject): Returns a detailed version string including the PyLink daemon version, the protocol module in use, and the server hostname. """ - fullversion = 'PyLink-%s. %s :[protocol:%s]' % (__version__, self.hostname(), self.protoname) + fullversion = 'PyLink-%s. %s :[protocol:%s, encoding:%s]' % (__version__, self.hostname(), self.protoname, self.encoding) return fullversion def hostname(self):