From 946cac8a131ad6d33229833a3c38df6bd9e37e2f Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 18 Sep 2013 21:12:17 +0200 Subject: [PATCH] exception handling shows the error --- manifold/manifoldproxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifold/manifoldproxy.py b/manifold/manifoldproxy.py index 720e5646..9f014971 100644 --- a/manifold/manifoldproxy.py +++ b/manifold/manifoldproxy.py @@ -107,8 +107,8 @@ with the query passed using POST""" return HttpResponse (json_answer, mimetype="application/json") - except: - print "** PROXY ERROR **" + except Exception,e: + print "** PROXY ERROR **",e import traceback traceback.print_exc() -- 2.43.0