aboutsummaryrefslogtreecommitdiffstats
path: root/sleekxmpp/xmlstream/stanzabase.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/stanzabase.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/stanzabase.py')
-rw-r--r--sleekxmpp/xmlstream/stanzabase.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/stanzabase.py b/sleekxmpp/xmlstream/stanzabase.py
index f4d66aa..aabd386 100644
--- a/sleekxmpp/xmlstream/stanzabase.py
+++ b/sleekxmpp/xmlstream/stanzabase.py
@@ -16,6 +16,9 @@ from sleekxmpp.xmlstream import JID
from sleekxmpp.xmlstream.tostring import tostring
+log = logging.getLogger(__name__)
+
+
# Used to check if an argument is an XML object.
XML_TYPE = type(ET.Element('xml'))
@@ -1140,7 +1143,7 @@ class StanzaBase(ElementBase):
Meant to be overridden.
"""
- logging.exception('Error handling {%s}%s stanza' % (self.namespace,
+ log.exception('Error handling {%s}%s stanza' % (self.namespace,
self.name))
def send(self):