Skip to content
Snippets Groups Projects
Commit ea45ef75 authored by Brian Moe's avatar Brian Moe
Browse files

Catch case where report is unavailable.

parent 1984d2fc
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,10 @@ from django.conf import settings
def histo(request):
table = open(settings.LATENCY_REPORT_WEB_PAGE_FILE_PATH, "r").read()
try:
table = open(settings.LATENCY_REPORT_WEB_PAGE_FILE_PATH, "r").read()
except IOError:
table = "No Data Available"
return render_to_response(
'gracedb/histogram.html',
{'table': table},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment