summaryrefslogtreecommitdiff
path: root/src/mailman/pipeline/tagger.py
diff options
context:
space:
mode:
authorBarry Warsaw2011-08-03 23:01:06 -0400
committerBarry Warsaw2011-08-03 23:01:06 -0400
commitfdb49295a5f859059f2b8d105d30e97f5b059e77 (patch)
tree84bbd8097dc150cc089069761612ae0a47372d79 /src/mailman/pipeline/tagger.py
parent6b7f61df17382d29fcb4b403d4485d1d08481177 (diff)
downloadmailman-fdb49295a5f859059f2b8d105d30e97f5b059e77.tar.gz
mailman-fdb49295a5f859059f2b8d105d30e97f5b059e77.tar.zst
mailman-fdb49295a5f859059f2b8d105d30e97f5b059e77.zip
Diffstat (limited to 'src/mailman/pipeline/tagger.py')
-rw-r--r--src/mailman/pipeline/tagger.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mailman/pipeline/tagger.py b/src/mailman/pipeline/tagger.py
index fbf6c0749..eb6a6265a 100644
--- a/src/mailman/pipeline/tagger.py
+++ b/src/mailman/pipeline/tagger.py
@@ -65,7 +65,6 @@ def process(mlist, msg, msgdata):
# of interest from the message match the regexp. If so, the message gets
# added to the specific topics bucket.
hits = {}
- # pylint: disable-msg=W0612
for name, pattern, desc, emptyflag in mlist.topics:
pattern = OR.join(pattern.splitlines())
cre = re.compile(pattern, re.IGNORECASE)