diff options
author | Nathan Fritz <fritzy@netflint.net> | 2009-10-29 02:34:23 +0000 |
---|---|---|
committer | Nathan Fritz <fritzy@netflint.net> | 2009-10-29 02:34:23 +0000 |
commit | 44aa52663579bcd1a56d2f13cdc91b1ca2c2b542 (patch) | |
tree | 9466bb338e3fe20fb259a8cf3187dbf3e68488aa /sleekxmpp/xmlstream/handler/waiter.py | |
parent | 8dbf53594bc9ea0aec1ecd81092d806d001a7b6c (diff) | |
download | slixmpp-44aa52663579bcd1a56d2f13cdc91b1ca2c2b542.tar.gz slixmpp-44aa52663579bcd1a56d2f13cdc91b1ca2c2b542.tar.bz2 slixmpp-44aa52663579bcd1a56d2f13cdc91b1ca2c2b542.tar.xz slixmpp-44aa52663579bcd1a56d2f13cdc91b1ca2c2b542.zip |
* fixed bugs with XEP 50 for components
* configuration-less nodes
Diffstat (limited to 'sleekxmpp/xmlstream/handler/waiter.py')
-rw-r--r-- | sleekxmpp/xmlstream/handler/waiter.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sleekxmpp/xmlstream/handler/waiter.py b/sleekxmpp/xmlstream/handler/waiter.py index 2c91052d..57d96f9d 100644 --- a/sleekxmpp/xmlstream/handler/waiter.py +++ b/sleekxmpp/xmlstream/handler/waiter.py @@ -9,14 +9,12 @@ class Waiter(base.BaseHandler): self._payload = queue.Queue() def prerun(self, payload): - logging.debug("Putting into Waiter %s" % self.name) self._payload.put(payload) def run(self, payload): pass def wait(self, timeout=60): - logging.debug("Waiting on %s." % self.name) try: return self._payload.get(True, timeout) except queue.Empty: |