summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2002-05-03 05:19:51 +0000
committerbwarsaw2002-05-03 05:19:51 +0000
commit16b3c60aa71fd579701ec2ebe29e481a87984d94 (patch)
tree49cf60d8d58f25135cf608c8bfc7315605ecb989
parent7d42106d334fc62f52ffcc5591852a568d3b9ae1 (diff)
downloadmailman-16b3c60aa71fd579701ec2ebe29e481a87984d94.tar.gz
mailman-16b3c60aa71fd579701ec2ebe29e481a87984d94.tar.zst
mailman-16b3c60aa71fd579701ec2ebe29e481a87984d94.zip
-rw-r--r--Mailman/Queue/CommandRunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Queue/CommandRunner.py b/Mailman/Queue/CommandRunner.py
index a7c52ba8b..3b8b96b88 100644
--- a/Mailman/Queue/CommandRunner.py
+++ b/Mailman/Queue/CommandRunner.py
@@ -130,7 +130,7 @@ Attached is your original message.
resp.extend(indent(self.results))
# Ignore empty lines
unprocessed = [line for line in self.commands[self.lineno:]
- if line.strip()]
+ if line and line.strip()]
if unprocessed:
resp.append(_('\n- Unprocessed:'))
resp.extend(indent(unprocessed))