summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/urls.py
diff options
context:
space:
mode:
authorTim Laszlo <tim.laszlo@gmail.com>2012-10-08 13:07:01 -0500
committerTim Laszlo <tim.laszlo@gmail.com>2012-10-08 13:07:01 -0500
commit8939c37a38c2c52d0b0a17a65a058bd1a7fc4489 (patch)
treea2087e572dcb92bbfc7a5c9a656615e1d0f7aa6a /src/lib/Bcfg2/Reporting/urls.py
parent65ef71476e09559c0292beaeb83b6d24b8dfe72a (diff)
downloadbcfg2-8939c37a38c2c52d0b0a17a65a058bd1a7fc4489.tar.gz
bcfg2-8939c37a38c2c52d0b0a17a65a058bd1a7fc4489.tar.bz2
bcfg2-8939c37a38c2c52d0b0a17a65a058bd1a7fc4489.zip
Reporting: add 500 handler back
Diffstat (limited to 'src/lib/Bcfg2/Reporting/urls.py')
-rw-r--r--src/lib/Bcfg2/Reporting/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/Bcfg2/Reporting/urls.py b/src/lib/Bcfg2/Reporting/urls.py
index 4dd343905..b8f242b01 100644
--- a/src/lib/Bcfg2/Reporting/urls.py
+++ b/src/lib/Bcfg2/Reporting/urls.py
@@ -3,6 +3,8 @@ from django.core.urlresolvers import reverse, NoReverseMatch
from django.http import HttpResponsePermanentRedirect
from Bcfg2.Reporting.utils import filteredUrls, paginatedUrls, timeviewUrls
+handler500 = 'Bcfg2.Reporting.views.server_error'
+
def newRoot(request):
try:
grid_view = reverse('reports_grid_view')