diff options
author | Rob Austein <sra@hactrn.net> | 2012-05-10 06:20:27 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-05-10 06:20:27 +0000 |
commit | 19c53434b80d127ea739351c175c030832e4a398 (patch) | |
tree | 27fd7404e03bb8afc37a7ae8be7768a92b3e0247 | |
parent | 7d72caf49ea375c573bc1b9b96575d35e8fa627f (diff) |
rpki.x509.DeadDrop.dump() should not abort the calling function for
any reason.
svn path=/trunk/; revision=4482
-rw-r--r-- | rpkid/rpki/x509.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/x509.py b/rpkid/rpki/x509.py index d6981b12..5c95ac4f 100644 --- a/rpkid/rpki/x509.py +++ b/rpkid/rpki/x509.py @@ -1397,7 +1397,7 @@ class DeadDrop(object): msg["X-RPKI-Timestamp"] = "%f" % now self.maildir.add(msg) self.warned = False - except OSError, e: + except Exception, e: if not self.warned: rpki.log.warn("Could not write to mailbox %s: %e" % (self.name, e)) self.warned = True |