diff options
-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 |