summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Nichols <tmnichols@gmail.com>2010-07-12 12:54:58 -0400
committerTom Nichols <tmnichols@gmail.com>2010-07-12 12:54:58 -0400
commit4864197d467ac92c21fab0f461f8cf6b374f60cd (patch)
tree6b649d867aff01de3060b0619931128197d5082b
parent92a5ac2ba9e777e8f6bb4736f10711c687034ef1 (diff)
downloadslixmpp-4864197d467ac92c21fab0f461f8cf6b374f60cd.tar.gz
slixmpp-4864197d467ac92c21fab0f461f8cf6b374f60cd.tar.bz2
slixmpp-4864197d467ac92c21fab0f461f8cf6b374f60cd.tar.xz
slixmpp-4864197d467ac92c21fab0f461f8cf6b374f60cd.zip
fixed indent
-rw-r--r--sleekxmpp/xmlstream/matcher/xmlmask.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/matcher/xmlmask.py b/sleekxmpp/xmlstream/matcher/xmlmask.py
index 87433d91..05104a73 100644
--- a/sleekxmpp/xmlstream/matcher/xmlmask.py
+++ b/sleekxmpp/xmlstream/matcher/xmlmask.py
@@ -39,7 +39,7 @@ class MatchXMLMask(base.MatcherBase):
try:
maskobj = cElementTree.fromstring(maskobj)
except ExpatError:
- logging.exception( "Expat error parsing: %s", maskobj)
+ logging.exception( "Expat error parsing: %s", maskobj)
if not use_ns and source.tag.split('}', 1)[-1] != maskobj.tag.split('}', 1)[-1]: # strip off ns and compare
return False
if use_ns and (source.tag != maskobj.tag and "{%s}%s" % (self.default_ns, maskobj.tag) != source.tag ):