소스 검색

Let HTTPExceptions fall through catch_exceptions().

master
Ben Kurtovic 7 년 전
부모
커밋
e20957a236
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +3
    -0
      calefaction/util.py

+ 3
- 0
calefaction/util.py 파일 보기

@@ -7,6 +7,7 @@ from traceback import format_exc

from flask import flash, request, url_for
from flask_mako import render_template, TemplateError
from werkzeug.exceptions import HTTPException

from .exceptions import AccessDeniedError, EVEAPIError
from .messages import Messages
@@ -38,6 +39,8 @@ def make_error_catcher(app, error_template):
def inner(*args, **kwargs):
try:
return func(*args, **kwargs)
except HTTPException:
raise
except TemplateError as exc:
app.logger.error("Caught exception:\n{0}".format(exc.text))
return render_template(error_template, traceback=exc.text)


불러오는 중...
취소
저장