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