diff options
author | Florent Le Coz <louiz@louiz.org> | 2010-11-08 09:14:17 +0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-11-09 01:53:41 +0800 |
commit | 9dbf246f0bfcac2c4ce538431ee629f126c86447 (patch) | |
tree | 9fe3bd976f28f619437a443e2321a1816d2e1072 /sleekxmpp/componentxmpp.py | |
parent | 4fb77ac8787422169566d613562127acf75a427b (diff) | |
download | slixmpp-9dbf246f0bfcac2c4ce538431ee629f126c86447.tar.gz slixmpp-9dbf246f0bfcac2c4ce538431ee629f126c86447.tar.bz2 slixmpp-9dbf246f0bfcac2c4ce538431ee629f126c86447.tar.xz slixmpp-9dbf246f0bfcac2c4ce538431ee629f126c86447.zip |
Doesn't fail if host has NO SRV record
Just catch an other exception type coming from the dns resolver that
could be raised with hosts like "anon.example.com" which just don't have
any SRV record.
Diffstat (limited to 'sleekxmpp/componentxmpp.py')
-rw-r--r-- | sleekxmpp/componentxmpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/componentxmpp.py b/sleekxmpp/componentxmpp.py index 8b0b6cc0..ae58c5f2 100644 --- a/sleekxmpp/componentxmpp.py +++ b/sleekxmpp/componentxmpp.py @@ -15,7 +15,7 @@ import hashlib from sleekxmpp import plugins from sleekxmpp import stanza -from sleekxmpp.basexmpp import BaseXMPP, SRV_SUPPORT +from sleekxmpp.basexmpp import BaseXMPP from sleekxmpp.xmlstream import XMLStream, RestartStream from sleekxmpp.xmlstream import StanzaBase, ET from sleekxmpp.xmlstream.matcher import * |