slixmpp/sleekxmpp/xmlstream/matcher/id.py

13 lines
292 B
Python

"""
SleekXMPP: The Sleek XMPP Library
Copyright (C) 2010 Nathanael C. Fritz
This file is part of SleekXMPP.
See the file LICENSE for copying permission.
"""
from . import base
class MatcherId(base.MatcherBase):
def match(self, xml):
return xml['id'] == self._criteria