diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-08-01 00:44:32 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-08-01 00:44:32 +0200 |
commit | 0866c9eb944518842b8d24c3985aedb5d0581c64 (patch) | |
tree | 81be29dd397fb3293fa8c461d800733fc235ef0b | |
parent | c2ba5388a5cf85cc8d4424d41f5ad0dab51c383b (diff) | |
download | poezio-0866c9eb944518842b8d24c3985aedb5d0581c64.tar.gz poezio-0866c9eb944518842b8d24c3985aedb5d0581c64.tar.bz2 poezio-0866c9eb944518842b8d24c3985aedb5d0581c64.tar.xz poezio-0866c9eb944518842b8d24c3985aedb5d0581c64.zip |
Deactivate the /info command for private rooms until it’s finished
-rw-r--r-- | src/tabs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tabs.py b/src/tabs.py index ea4bd082..7a79550d 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -981,6 +981,7 @@ class PrivateTab(ChatTab): # keys self.key_func['^I'] = self.completion # commands + #self.commands['info'] = (self.command_info, _('Usage: /info\nInfo: Display some information about the user in the MUC: '), None) self.commands['unquery'] = (self.command_unquery, _("Usage: /unquery\nUnquery: close the tab"), None) self.commands['part'] = (self.command_unquery, _("Usage: /part\Part: close the tab"), None) self.resize() |