diff options
| author | bwarsaw | 2001-07-13 20:52:09 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-07-13 20:52:09 +0000 |
| commit | 262f09c07b76953551eb0643ca3aa828758072d8 (patch) | |
| tree | 6227409a6c56b90c6b1f8d8241938bc263dc7318 /Mailman/Queue/IncomingRunner.py | |
| parent | 7ee69b9ccaf87d2602f9a60284fe2ff8e543c1f4 (diff) | |
| download | mailman-262f09c07b76953551eb0643ca3aa828758072d8.tar.gz mailman-262f09c07b76953551eb0643ca3aa828758072d8.tar.zst mailman-262f09c07b76953551eb0643ca3aa828758072d8.zip | |
_dopipeline(): We don't need to save the return value of __import__().
Diffstat (limited to '')
| -rw-r--r-- | Mailman/Queue/IncomingRunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Queue/IncomingRunner.py b/Mailman/Queue/IncomingRunner.py index 1cbdb79e5..58052c376 100644 --- a/Mailman/Queue/IncomingRunner.py +++ b/Mailman/Queue/IncomingRunner.py @@ -128,7 +128,7 @@ class IncomingRunner(Runner): while pipeline: handler = pipeline.pop(0) modname = 'Mailman.Handlers.' + handler - mod = __import__(modname) + __import__(modname) try: pid = os.getpid() sys.modules[modname].process(mlist, msg, msgdata) |
