We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eddf84 commit d2a746dCopy full SHA for d2a746d
inoreader/filter.py
@@ -19,7 +19,7 @@ def wrap(cls):
19
class IncludeAnyFilter(object):
20
21
def __init__(self, rules):
22
- self.rules = [re.compile(regexp) for regexp in rules]
+ self.rules = [re.compile(regexp, re.IGNORECASE) for regexp in rules]
23
24
def validate(self, text):
25
for regexp in self.rules:
@@ -33,7 +33,7 @@ def validate(self, text):
33
class IncludeAllFilter(object):
34
35
36
37
38
39
@@ -47,7 +47,7 @@ def validate(self, text):
47
class ExcludeFilter(object):
48
49
50
51
52
53
0 commit comments