diff options
author | mathieui <mathieui@mathieui.net> | 2012-05-22 20:04:41 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-05-22 20:04:41 +0200 |
commit | b36247e7c9224a6a1a7eeaa7f8f96dcf33472c7c (patch) | |
tree | 822f9b8076c8d7381b57036e1e53ae18f717ad93 | |
parent | 3879a91112722a2a26e0785d402c47b9df8104cb (diff) | |
download | poezio-b36247e7c9224a6a1a7eeaa7f8f96dcf33472c7c.tar.gz poezio-b36247e7c9224a6a1a7eeaa7f8f96dcf33472c7c.tar.bz2 poezio-b36247e7c9224a6a1a7eeaa7f8f96dcf33472c7c.tar.xz poezio-b36247e7c9224a6a1a7eeaa7f8f96dcf33472c7c.zip |
Remove the unused “port” option.
custom_port is already used instead.
-rw-r--r-- | data/default_config.cfg | 3 | ||||
-rw-r--r-- | doc/en/configure.txt | 4 | ||||
-rw-r--r-- | src/core.py | 2 |
3 files changed, 1 insertions, 8 deletions
diff --git a/data/default_config.cfg b/data/default_config.cfg index 61c30c21..f109e394 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -7,9 +7,6 @@ # the server. Make sure the server you're using accepts anonymous authentification server = anon.louiz.org -# the port you'll use to connect -port = 5222 - # SSL Certificate fingerprint # Do not touch this if you don’t know what you are doing certificate = diff --git a/doc/en/configure.txt b/doc/en/configure.txt index e5098da1..81bb8198 100644 --- a/doc/en/configure.txt +++ b/doc/en/configure.txt @@ -44,10 +44,6 @@ section of this documentation. Make sure it accepts anonymous authentification Note that this option doesn’t do anything at all if you’re using your own JID. -*port*:: 5222 - - The port you’ll use to connect. - *certificate*:: [empty] The fingerprint of the SSL certificate as a hexadecimal string, you should diff --git a/src/core.py b/src/core.py index 7719d44f..1e7f8a93 100644 --- a/src/core.py +++ b/src/core.py @@ -1573,7 +1573,7 @@ class Core(object): current.send_chat_state('active') def command_rawxml(self, arg): - """" + """ /rawxml <xml stanza> """ if not arg: |