Fix Matcher.__contains__

This commit is contained in:
ines 2017-10-25 16:19:38 +02:00
parent 18aae423fb
commit 91beacf5e3

View File

@ -230,7 +230,7 @@ cdef class Matcher:
key (unicode): The match ID.
RETURNS (bool): Whether the matcher contains rules for this match ID.
"""
return key in self._patterns
return self._normalize_key(key) in self._patterns
def add(self, key, on_match, *patterns):
"""Add a match-rule to the matcher. A match-rule consists of: an ID key,