diff options
Diffstat (limited to 'rpkid/rpki/pubd.py')
-rw-r--r-- | rpkid/rpki/pubd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/pubd.py b/rpkid/rpki/pubd.py index bde1260e..6968780d 100644 --- a/rpkid/rpki/pubd.py +++ b/rpkid/rpki/pubd.py @@ -134,7 +134,7 @@ class main(object): raise except Exception, e: rpki.log.traceback() - cb(500, reason = "Unhandled exception %s" % e) + cb(500, reason = "Unhandled exception %s: %s" % (e.__class__.__name__, e)) client_url_regexp = re.compile("/client/([-A-Z0-9_/]+)$", re.I) |