summaryrefslogtreecommitdiff
path: root/src/mailman/core/switchboard.py
diff options
context:
space:
mode:
authorBarry Warsaw2011-06-01 17:09:32 -0400
committerBarry Warsaw2011-06-01 17:09:32 -0400
commitbf8b285acb8c2500e52ae2582f27513b9842de54 (patch)
tree53e30be0bb665d66a9350fe58d22697c4c0a860e /src/mailman/core/switchboard.py
parent0f85fb344688e1982e9320e79b7fb38eefc1ac53 (diff)
downloadmailman-bf8b285acb8c2500e52ae2582f27513b9842de54.tar.gz
mailman-bf8b285acb8c2500e52ae2582f27513b9842de54.tar.zst
mailman-bf8b285acb8c2500e52ae2582f27513b9842de54.zip
Diffstat (limited to 'src/mailman/core/switchboard.py')
-rw-r--r--src/mailman/core/switchboard.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/core/switchboard.py b/src/mailman/core/switchboard.py
index 5d9eb65ce..4c7b31a67 100644
--- a/src/mailman/core/switchboard.py
+++ b/src/mailman/core/switchboard.py
@@ -69,10 +69,10 @@ class Switchboard:
@staticmethod
def initialize():
"""Initialize the global switchboards for input/output."""
- for conf in config.qrunner_configs:
+ for conf in config.runner_configs:
name = conf.name.split('.')[-1]
assert name not in config.switchboards, (
- 'Duplicate qrunner name: {0}'.format(name))
+ 'Duplicate runner name: {0}'.format(name))
substitutions = config.paths
substitutions['name'] = name
path = expand(conf.path, substitutions)
@@ -118,7 +118,7 @@ class Switchboard:
_metadata = {}
# Calculate the SHA hexdigest of the message to get a unique base
# filename. We're also going to use the digest as a hash into the set
- # of parallel qrunner processes.
+ # of parallel runner processes.
data = _metadata.copy()
data.update(_kws)
listname = data.get('listname', '--nolist--')