summaryrefslogtreecommitdiff
path: root/src/mailman/utilities/plugins.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/utilities/plugins.py')
-rw-r--r--src/mailman/utilities/plugins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/utilities/plugins.py b/src/mailman/utilities/plugins.py
index 3fb5e49bc..aad909056 100644
--- a/src/mailman/utilities/plugins.py
+++ b/src/mailman/utilities/plugins.py
@@ -70,7 +70,7 @@ def add_pluggable_components(subpackage, interface, mapping):
"""
for component in find_pluggable_components(subpackage, interface):
if component.name in mapping:
- raise RuntimeError( # pragma: no cover
+ raise RuntimeError( # pragma: nocover
'Duplicate key "{}" found in {}; previously {}'.format(
component.name, component, mapping[component.name]))
mapping[component.name] = component