From f12637570e539be6dede4ce7f550e92caa2e3061 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Wed, 21 Dec 2011 07:27:23 +0100 Subject: [PATCH] python: Fixed exception masking bug in ashd-wsgi. --- python/ashd-wsgi | 1 + 1 file changed, 1 insertion(+) diff --git a/python/ashd-wsgi b/python/ashd-wsgi index af2c332..ae0fc14 100755 --- a/python/ashd-wsgi +++ b/python/ashd-wsgi @@ -193,6 +193,7 @@ def dowsgi(req): reqevent.response(resp) except: exc = sys.exc_info() + raise finally: reqevent.__exit__(*exc) -- 2.11.0