diff options
author | mathieui <mathieui@mathieui.net> | 2011-09-25 18:25:50 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2011-09-25 18:25:50 +0200 |
commit | 0f7ec35c971a1b3f9408d3f4a70935c5f65bb818 (patch) | |
tree | 364a5d48304e671e6ad1bdc39f49332e3fa126ff | |
parent | 412e9c281cc76d2c969eab353c4cc0f62429d001 (diff) | |
download | poezio-0f7ec35c971a1b3f9408d3f4a70935c5f65bb818.tar.gz poezio-0f7ec35c971a1b3f9408d3f4a70935c5f65bb818.tar.bz2 poezio-0f7ec35c971a1b3f9408d3f4a70935c5f65bb818.tar.xz poezio-0f7ec35c971a1b3f9408d3f4a70935c5f65bb818.zip |
Remove /pubsub command for the time being
-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 b93678ab..230253de 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 = { |