aboutsummaryrefslogtreecommitdiffstats
path: root/sleekxmpp/xmlstream/handler/waiter.py
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2010-11-23 22:52:48 -0500
committerGuillaume Horel <guillaume.horel@gmail.com>2010-11-23 22:52:48 -0500
commit217835b3adddedc9e8c501e8868d0440509ba1d5 (patch)
tree87ca06cceaf5af8a6d18fb57b65143cb784fb123 /sleekxmpp/xmlstream/handler/waiter.py
parenta5b4d8b2d4cda356afddcdab4864d27e165237f7 (diff)
downloadalias-217835b3adddedc9e8c501e8868d0440509ba1d5.tar.gz
Update to latest version of sleekxmpp
this fixes the bug with service discovery
Diffstat (limited to 'sleekxmpp/xmlstream/handler/waiter.py')
-rw-r--r--sleekxmpp/xmlstream/handler/waiter.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/handler/waiter.py b/sleekxmpp/xmlstream/handler/waiter.py
index 8072022..a4bc354 100644
--- a/sleekxmpp/xmlstream/handler/waiter.py
+++ b/sleekxmpp/xmlstream/handler/waiter.py
@@ -16,6 +16,9 @@ from sleekxmpp.xmlstream import StanzaBase, RESPONSE_TIMEOUT
from sleekxmpp.xmlstream.handler.base import BaseHandler
+log = logging.getLogger(__name__)
+
+
class Waiter(BaseHandler):
"""
@@ -85,7 +88,7 @@ class Waiter(BaseHandler):
stanza = self._payload.get(True, timeout)
except queue.Empty:
stanza = False
- logging.warning("Timed out waiting for %s" % self.name)
+ log.warning("Timed out waiting for %s" % self.name)
self.stream.removeHandler(self.name)
return stanza