diff options
| author | Barry Warsaw | 2016-05-15 12:55:54 -0400 |
|---|---|---|
| committer | GitLab | 2016-05-15 17:01:00 +0000 |
| commit | 57e3a7fd0fb225e144cf4a5f60b3aa4680570870 (patch) | |
| tree | 2ac357311868c5ce9d44e820c79ff7ec3884e8f3 /src | |
| parent | 2e25a6b37c393a6851d50bbe7cbc26a31595d1a6 (diff) | |
| download | mailman-57e3a7fd0fb225e144cf4a5f60b3aa4680570870.tar.gz mailman-57e3a7fd0fb225e144cf4a5f60b3aa4680570870.tar.zst mailman-57e3a7fd0fb225e144cf4a5f60b3aa4680570870.zip | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/mailman/runners/digest.py | 2 | ||||
| -rw-r--r-- | src/mailman/runners/tests/test_digest.py | 4 |
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(), |
