summaryrefslogtreecommitdiff
path: root/src/mailman/runners/digest.py
diff options
context:
space:
mode:
authorBarry Warsaw2016-01-26 15:32:19 -0500
committerBarry Warsaw2016-01-26 15:32:19 -0500
commit802ce668e67f51f904c69fdab2f5565a73c15e8a (patch)
tree8ec85559627422b0b13b520cacdc8a776aeee640 /src/mailman/runners/digest.py
parent57a07393e984dbbc356bc05f0c6801ffe1536b47 (diff)
downloadmailman-802ce668e67f51f904c69fdab2f5565a73c15e8a.tar.gz
mailman-802ce668e67f51f904c69fdab2f5565a73c15e8a.tar.zst
mailman-802ce668e67f51f904c69fdab2f5565a73c15e8a.zip
Diffstat (limited to 'src/mailman/runners/digest.py')
-rw-r--r--src/mailman/runners/digest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/runners/digest.py b/src/mailman/runners/digest.py
index 357379e32..3d540d73f 100644
--- a/src/mailman/runners/digest.py
+++ b/src/mailman/runners/digest.py
@@ -151,7 +151,7 @@ class MIMEDigester(Digester):
"""A MIME digester."""
def __init__(self, mlist, volume, digest_number):
- super(MIMEDigester, self).__init__(mlist, volume, digest_number)
+ super().__init__(mlist, volume, digest_number)
masthead = MIMEText(self._masthead.encode(self._charset),
_charset=self._charset)
masthead['Content-Description'] = self._subject
@@ -215,7 +215,7 @@ class RFC1153Digester(Digester):
"""A digester of the format specified by RFC 1153."""
def __init__(self, mlist, volume, digest_number):
- super(RFC1153Digester, self).__init__(mlist, volume, digest_number)
+ super().__init__(mlist, volume, digest_number)
self._separator70 = '-' * 70
self._separator30 = '-' * 30
self._text = StringIO()