diff options
Diffstat (limited to 'src/mailman/runners/pipeline.py')
| -rw-r--r-- | src/mailman/runners/pipeline.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mailman/runners/pipeline.py b/src/mailman/runners/pipeline.py index b7ea7fa34..3ec7499f2 100644 --- a/src/mailman/runners/pipeline.py +++ b/src/mailman/runners/pipeline.py @@ -22,16 +22,12 @@ through the 'preparation pipeline'. This pipeline adds, deletes and modifies headers, calculates message recipients, and more. """ -__all__ = [ - 'PipelineRunner', - ] - - +from mailman import public from mailman.core.pipelines import process from mailman.core.runner import Runner - +@public class PipelineRunner(Runner): def _dispose(self, mlist, msg, msgdata): # Process the message through the mailing list's pipeline. |
