mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
7 lines
180 B
Python
7 lines
180 B
Python
from werkzeug.exceptions import HTTPException
|
|
from .handlers import generic_error_handler
|
|
|
|
|
|
def init_app(app):
|
|
app.register_error_handler(HTTPException, generic_error_handler)
|