From 4864197d467ac92c21fab0f461f8cf6b374f60cd Mon Sep 17 00:00:00 2001 From: Tom Nichols Date: Mon, 12 Jul 2010 12:54:58 -0400 Subject: fixed indent --- sleekxmpp/xmlstream/matcher/xmlmask.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sleekxmpp') 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 ): -- cgit v1.2.3