summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mailman/runners/digest.py2
-rw-r--r--src/mailman/runners/tests/test_digest.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/runners/digest.py b/src/mailman/runners/digest.py
index 16a97eb73..bbef1f33f 100644
--- a/src/mailman/runners/digest.py
+++ b/src/mailman/runners/digest.py
@@ -230,7 +230,7 @@ class RFC1153Digester(Digester):
return Message()
def _make_digest_part(self):
- """Not actually used here but referenced in super().__init__()."""
+ # Not actually used here but referenced in super().__init__().
return self._message
def add_toc(self, count):
diff --git a/src/mailman/runners/tests/test_digest.py b/src/mailman/runners/tests/test_digest.py
index 4d9429c55..0448a7349 100644
--- a/src/mailman/runners/tests/test_digest.py
+++ b/src/mailman/runners/tests/test_digest.py
@@ -152,7 +152,7 @@ multipart/mixed
def test_issue141(self):
# Currently DigestMode.summary_digests are equivalent to mime_digests.
- # This also tests issue 234.
+ # This also tests GL issue 234.
self._mlist.send_welcome_message = False
bart = subscribe(self._mlist, 'Bart')
bart.preferences.delivery_mode = DeliveryMode.summary_digests
@@ -267,7 +267,7 @@ Content-Transfer-Encoding: 7bit
toc = mime.get_payload(1).get_payload(decode=True).decode('utf-8')
self.assertMultiLineEqual(toc.splitlines()[0], 'Thèmes du jour :')
# The third subpart is a multipart/digest part and its first subpart
- # contains the posted message in Japanese.
+ # contains the posted message in Japanese.
self.assertEqual(mime.get_payload(2).get_content_type(),
'multipart/digest')
self.assertEqual(mime.get_payload(2).get_payload(0).get_content_type(),