diff options
author | Nathan Fritz <fritzy@netflint.net> | 2010-01-15 21:36:53 -0800 |
---|---|---|
committer | Nathan Fritz <fritzy@netflint.net> | 2010-01-15 21:36:53 -0800 |
commit | 7a9a86af3d2406ef921ae2d5f8ba7e42eeff973d (patch) | |
tree | b5cb75f03b60bccb8e1c368ae13ee5aeb585f36f /sleekxmpp/xmlstream/matcher/xpath.py | |
parent | e39a2395d7d5b1490e66316cd46b3f31b787cb37 (diff) | |
download | slixmpp-7a9a86af3d2406ef921ae2d5f8ba7e42eeff973d.tar.gz slixmpp-7a9a86af3d2406ef921ae2d5f8ba7e42eeff973d.tar.bz2 slixmpp-7a9a86af3d2406ef921ae2d5f8ba7e42eeff973d.tar.xz slixmpp-7a9a86af3d2406ef921ae2d5f8ba7e42eeff973d.zip |
fixed matcher bug introduced with stanza matching
Diffstat (limited to 'sleekxmpp/xmlstream/matcher/xpath.py')
-rw-r--r-- | sleekxmpp/xmlstream/matcher/xpath.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/matcher/xpath.py b/sleekxmpp/xmlstream/matcher/xpath.py index 5e0411ef..fe18a655 100644 --- a/sleekxmpp/xmlstream/matcher/xpath.py +++ b/sleekxmpp/xmlstream/matcher/xpath.py @@ -6,7 +6,8 @@ ignore_ns = False class MatchXPath(base.MatcherBase): def match(self, xml): - xml = xml.xml + if hasattr(xml, 'xml'): + xml = xml.xml x = cElementTree.Element('x') x.append(xml) if not ignore_ns: |