diff options
author | mathieui <mathieui@mathieui.net> | 2011-06-21 17:17:42 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2011-06-21 17:17:42 +0200 |
commit | 7d6a03c9bbde2ec0bb2eebcf983967b459bf282d (patch) | |
tree | 0eda0c937ec35e39b42a90d87a945df78ad74f84 /src | |
parent | afab9e050f59fcd37163aeb93e5cc113c1510546 (diff) | |
download | poezio-7d6a03c9bbde2ec0bb2eebcf983967b459bf282d.tar.gz poezio-7d6a03c9bbde2ec0bb2eebcf983967b459bf282d.tar.bz2 poezio-7d6a03c9bbde2ec0bb2eebcf983967b459bf282d.tar.xz poezio-7d6a03c9bbde2ec0bb2eebcf983967b459bf282d.zip |
/reconnect is too dangerous for retards
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 22398ac4..66fbe5bb 100644 --- a/src/core.py +++ b/src/core.py @@ -127,7 +127,7 @@ class Core(object): 'list': (self.command_list, _('Usage: /list\nList: get the list of public chatrooms on the specified server'), self.completion_list), 'message': (self.command_message, _('Usage: /message <jid> [optional message]\nMessage: Open a conversation with the specified JID (even if it is not in our roster), and send a message to it, if specified'), None), 'version': (self.command_version, _('Usage: /version <jid>\nVersion: get the software version of the given JID (usually its XMPP client and Operating System)'), None), - 'reconnect': (self.command_reconnect, _('Usage: /connect\nConnect: disconnect from the remote server if you are currently connected and then connect to it again'), 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), } |