diff options
| author | Barry Warsaw | 2016-04-12 13:10:39 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2016-04-12 13:10:39 -0400 |
| commit | d9384158c3f6e01ea7a0a42a40dd47c0892eb266 (patch) | |
| tree | f3f9410fdfcbc3d26c194ef93809e3f708320f52 /src/mailman/app/digests.py | |
| parent | 04dc2acf6c24a82db7a3de46c14a2b66d6ffc907 (diff) | |
| download | mailman-d9384158c3f6e01ea7a0a42a40dd47c0892eb266.tar.gz mailman-d9384158c3f6e01ea7a0a42a40dd47c0892eb266.tar.zst mailman-d9384158c3f6e01ea7a0a42a40dd47c0892eb266.zip | |
Diffstat (limited to 'src/mailman/app/digests.py')
| -rw-r--r-- | src/mailman/app/digests.py | 3 |
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 |
