summaryrefslogtreecommitdiff
path: root/src/mailman/app/digests.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/app/digests.py')
-rw-r--r--src/mailman/app/digests.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mailman/app/digests.py b/src/mailman/app/digests.py
index f8b217142..0d47df328 100644
--- a/src/mailman/app/digests.py
+++ b/src/mailman/app/digests.py
@@ -56,8 +56,7 @@ def bump_digest_number_and_volume(mlist):
bump = (now.toordinal() > mlist.digest_last_sent_at.toordinal())
else:
raise AssertionError(
- 'Bad DigestFrequency: {0}'.format(
- mlist.digest_volume_frequency))
+ 'Bad DigestFrequency: {}'.format(mlist.digest_volume_frequency))
if bump:
mlist.volume += 1
mlist.next_digest_number = 1