diff options
author | mathieui <mathieui@mathieui.net> | 2011-09-25 20:30:23 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2011-09-25 20:30:23 +0200 |
commit | c427ce7ac0d9a6dbf5553b2c40f6cab1424fa416 (patch) | |
tree | d2b0113ad00aa1ded695b1b6521fa018a8ecded4 /src | |
parent | 6037c4be65fd1a85e8500e830e61eef4837a815a (diff) | |
parent | 0f7ec35c971a1b3f9408d3f4a70935c5f65bb818 (diff) | |
download | poezio-c427ce7ac0d9a6dbf5553b2c40f6cab1424fa416.tar.gz poezio-c427ce7ac0d9a6dbf5553b2c40f6cab1424fa416.tar.bz2 poezio-c427ce7ac0d9a6dbf5553b2c40f6cab1424fa416.tar.xz poezio-c427ce7ac0d9a6dbf5553b2c40f6cab1424fa416.zip |
Remove /pubsub command
Diffstat (limited to 'src')
-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 67e7bbe8..3c4af5d9 100644 --- a/src/core.py +++ b/src/core.py @@ -125,7 +125,7 @@ class Core(object): '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.'), None), - 'pubsub': (self.command_pubsub, _('Usage: /pubsub <domain>\nPubsub: Open a pubsub browser on the given domain'), None), +# nope 'pubsub': (self.command_pubsub, _('Usage: /pubsub <domain>\nPubsub: Open a pubsub browser on the given domain'), None), } self.key_func = { |