From: Fredrik Tolf Date: Wed, 21 Dec 2011 06:27:23 +0000 (+0100) Subject: python: Fixed exception masking bug in ashd-wsgi. X-Git-Tag: 0.11~32 X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=f12637570e539be6dede4ce7f550e92caa2e3061 python: Fixed exception masking bug in ashd-wsgi. --- 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)