You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
272 B
13 lines
272 B
4 years ago
|
from flask import render_template
|
||
|
from app import app
|
||
|
|
||
|
@app.errorhandler(404)
|
||
|
def not_found_error(error):
|
||
|
return render_template('404.html'), 404
|
||
|
|
||
|
@app.errorhandler(500)
|
||
|
def internal_error(error):
|
||
|
return render_template('500.html'), 500
|
||
|
db.session.rollback()
|
||
|
|