diff options
| author | bwarsaw | 1999-12-10 19:57:41 +0000 |
|---|---|---|
| committer | bwarsaw | 1999-12-10 19:57:41 +0000 |
| commit | 14ac79204bbab36993c3a4637c167d162069b7e2 (patch) | |
| tree | 5f753875a49f9dcfee7a66cb44cf8108833c145f | |
| parent | 2d96d3432ca9b66a595e76b94f90bfb861538a9c (diff) | |
| download | mailman-14ac79204bbab36993c3a4637c167d162069b7e2.tar.gz mailman-14ac79204bbab36993c3a4637c167d162069b7e2.tar.zst mailman-14ac79204bbab36993c3a4637c167d162069b7e2.zip | |
| -rwxr-xr-x | cron/senddigests | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cron/senddigests b/cron/senddigests index 2592809b4..c3d2ff347 100755 --- a/cron/senddigests +++ b/cron/senddigests @@ -46,11 +46,9 @@ def main(): if os.stat(digestfile)[ST_SIZE] > 0: ToDigest.inject_digest(mlist, digestfile, topicsfile) except os.error, (code, msg): - if code == ENOENT: - mlist.LogMsg('error', '%s: lost digest file: %s (%s)' % - (listname, digestfile, msg)) - else: + if code <> ENOENT: raise + # otherwise, this list doesn't have any outstanding digests if __name__ == "__main__": |
