summaryrefslogtreecommitdiff
path: root/src/mailman/pipeline/tagger.py
diff options
context:
space:
mode:
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)