From 9cab5e8263c2126fa730010ba2a64471c2224993 Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Tue, 24 Dec 2013 15:10:20 +0000 Subject: [PATCH] Hack dajaxice to not suppress exceptions for the time being - suppressing exceptions is a perfect way of hiding errors and preventing people who wonder what's wrong from debugging them. - Legacy-Id: 7066 --- dajaxice/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dajaxice/views.py b/dajaxice/views.py index 4e656d3fd..b1c8adc63 100644 --- a/dajaxice/views.py +++ b/dajaxice/views.py @@ -50,6 +50,7 @@ class DajaxiceRequest(View): try: response = function.call(request, **data) except Exception: + raise # always give us a backtrace if settings.DEBUG: raise response = dajaxice_config.DAJAXICE_EXCEPTION