summaryrefslogtreecommitdiff
path: root/src/mailman/core/logging.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/core/logging.py')
-rw-r--r--src/mailman/core/logging.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/core/logging.py b/src/mailman/core/logging.py
index c1db8a55e..7c80037f6 100644
--- a/src/mailman/core/logging.py
+++ b/src/mailman/core/logging.py
@@ -103,8 +103,8 @@ def _init_logger(propagate, sub_name, log, logger_config):
# Get settings from log configuration file (or defaults).
log_format = logger_config.format
log_datefmt = logger_config.datefmt
- # Propagation to the root logger is how we handle logging to stderr
- # when the runners are not run as a subprocess of 'bin/mailman start'.
+ # Propagation to the root logger is how we handle logging to stderr when
+ # the runners are not run as a subprocess of 'mailman start'.
log.propagate = (as_boolean(logger_config.propagate)
if propagate is None else propagate)
# Set the logger's level.