]> code.delx.au - pymsnt/blobdiff - src/disco.py
Fix sendRosterImport with ejabberd (trim the resources when sending)
[pymsnt] / src / disco.py
index 9e5c7471dff91a43ce69182dfa141f44e29594de..4fd2221f840a0fd799042967aaf54fbf6360b182 100644 (file)
@@ -1,11 +1,12 @@
-# Copyright 2004-2005 James Bunton <james@delx.cjb.net>
+# Copyright 2004-2006 James Bunton <james@delx.cjb.net>
 # Licensed for distribution under the GPL version 2, check COPYING for details
 
 from debug import LogEvent, INFO, WARN, ERROR
 
 from twisted.internet.defer import Deferred
 from twisted.internet import reactor
-from tlib.xmlw import Element, jid
+from twisted.words.xish.domish import Element
+from twisted.words.protocols.jabber.jid import internJID
 
 import sys
 
@@ -70,7 +71,7 @@ class ServerDiscovery:
                Returns a deferred which will fire with the matching IQ response as it's sole argument. """
                def checkDeferred():
                        if(not d.called):
-                               d.errback()
+                               d.errback(Exception("Timeout"))
                                del self.deferredIqs[(jid, ID)]
 
                jid = el.getAttribute("to")
@@ -113,8 +114,8 @@ class ServerDiscovery:
                iqType = el.getAttribute("type")
                ulang = utils.getLang(el)
                try: # Stringprep
-                       froj = jid.intern(fro)
-                       to = jid.intern(to).full()
+                       froj = internJID(fro)
+                       to = internJID(to).full()
                except Exception:
                        LogEvent(WARN, "", "Dropping IQ because of stringprep error")