diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-07-18 22:22:13 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-07-18 22:22:13 +0200 |
commit | c2ba5388a5cf85cc8d4424d41f5ad0dab51c383b (patch) | |
tree | 9948e8d80aa16ef67a6805eb83bd7c2437e656ee | |
parent | f967a811422adda54f10b26f2d00c11ac4803c62 (diff) | |
download | poezio-c2ba5388a5cf85cc8d4424d41f5ad0dab51c383b.tar.gz poezio-c2ba5388a5cf85cc8d4424d41f5ad0dab51c383b.tar.bz2 poezio-c2ba5388a5cf85cc8d4424d41f5ad0dab51c383b.tar.xz poezio-c2ba5388a5cf85cc8d4424d41f5ad0dab51c383b.zip |
Fix a crash on missing completion for /bind
-rw-r--r-- | src/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py index c0e5f252..e159029a 100644 --- a/src/core.py +++ b/src/core.py @@ -130,7 +130,7 @@ class Core(object): 'version': (self.command_version, _('Usage: /version <jid>\nVersion: get the software version of the given JID (usually its XMPP client and Operating System)'), None), 'connect': (self.command_reconnect, _('Usage: /connect\nConnect: disconnect from the remote server if you are currently connected and then connect to it again'), None), 'server_cycle': (self.command_server_cycle, _('Usage: /server_cycle [domain] [message]\nServer Cycle: disconnect and reconnects in all the rooms in domain.'), None), - 'bind': (self.command_bind, _('Usage: /bind <key> <equ>\nBind: bind a key to an other key or to a “command”. For example "/bind ^H KEY_UP" makes Control + h do the same same than the Up key.')), + 'bind': (self.command_bind, _('Usage: /bind <key> <equ>\nBind: bind a key to an other key or to a “command”. For example "/bind ^H KEY_UP" makes Control + h do the same same than the Up key.'), None), 'pubsub': (self.command_pubsub, _('Usage: /pubsub <domain>\nPubsub: Open a pubsub browser on the given domain'), None), } |