From a8b3909fde3645074a04dd9a61ac3b870d7838ee Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 24 Oct 2011 21:27:37 +0200 Subject: =?UTF-8?q?French=20=E2=86=92=20English?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/default_config.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/default_config.cfg b/data/default_config.cfg index d2fe7f87..87687d58 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -20,10 +20,10 @@ resource = # If this is empty, the $USER environnement variable will be used default_nick = -# Jabber identifiant. Specify it only if you want to connect using an existing +# Jabber identifier. Specify it only if you want to connect using an existing # account on a server. This is optional and useful only for some features, # like room administration, nickname registration. -# The 'server' option will be ignored if you specify a JID (Jabber identifiant) +# The 'server' option will be ignored if you specify a JID (Jabber identifier) # It should be in the form nickname@server.tld jid = -- cgit v1.2.3 From 6d436f570ae186a472fe0d743cef7339e0c16d5d Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 27 Oct 2011 21:20:26 +0200 Subject: Fixed a TB on /kick --- src/tabs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tabs.py b/src/tabs.py index cd9450a7..8c4e8717 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -628,7 +628,8 @@ class MucTab(ChatTab): args = common.shell_split(arg) if not len(args): self.core.command_help('kick') - self._command_change_role('kick '+arg) + else: + self.command_role('none '+arg) def command_role(self, arg): """ -- cgit v1.2.3