fix service unavailable template

This commit is contained in:
kakwa 2015-10-20 22:42:10 +02:00
parent 1d97e01540
commit c397afab4a
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ def exception_decorator(func):
self._handle_exception(e)
username = self._check_session()
if not username:
return self.temp_service_unavailable.render()
return self.temp['service_unavailable.tmpl'].render()
is_admin = self._check_admin()
et = type(e)
if et is UserDoesntExist: