diff options
author | Michael Elkins <melkins@tislabs.com> | 2012-01-13 21:50:53 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2012-01-13 21:50:53 +0000 |
commit | d610af2370c1f8e4bf41766ffe045b269cc53c45 (patch) | |
tree | 16aa9718cadfb029aef3084d61b1647f3505969d /rpkid/rpki/http.py | |
parent | 66a6246645eb12a4f968087662f42d1dd0417203 (diff) | |
parent | 49f26d19fcb2d9ef41cb1ed24415da16e7b5ecc2 (diff) |
merged with ^/branches/tk100
svn path=/branches/tk161/; revision=4154
Diffstat (limited to 'rpkid/rpki/http.py')
-rw-r--r-- | rpkid/rpki/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/http.py b/rpkid/rpki/http.py index d8afd44c..7d7e81ba 100644 --- a/rpkid/rpki/http.py +++ b/rpkid/rpki/http.py @@ -534,7 +534,7 @@ class http_server(http_stream): raise except Exception, e: rpki.log.traceback() - self.send_error(500, "Unhandled exception %s" % e) + self.send_error(500, reason = "Unhandled exception %s: %s" % (e.__class__.__name__, e)) else: self.send_error(code = error[0], reason = error[1]) |