aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2014-01-15 15:22:52 +0000
committerRob Austein <sra@hactrn.net>2014-01-15 15:22:52 +0000
commit487f2aa24cd525ae4c2fb9fc32153162c0f1398e (patch)
tree5650c2680475466a67d486f6272f9b1759b40867
parentbdf31293ab16b5aea320d0aaffce8caaca9eb23c (diff)
Typo in format string was throwing exception-within-exception in
DeadDrop.dump(). svn path=/trunk/; revision=5636
-rw-r--r--rpkid/rpki/x509.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/x509.py b/rpkid/rpki/x509.py
index de54c711..5475a452 100644
--- a/rpkid/rpki/x509.py
+++ b/rpkid/rpki/x509.py
@@ -1606,7 +1606,7 @@ class DeadDrop(object):
self.warned = False
except Exception, e:
if not self.warned:
- rpki.log.warn("Could not write to mailbox %s: %e" % (self.name, e))
+ rpki.log.warn("Could not write to mailbox %s: %s" % (self.name, e))
self.warned = True
class XML_CMS_object(Wrapped_CMS_object):