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