cleanup and fixes
This commit is contained in:
parent
1113295c5b
commit
f1d79f1e90
@ -82,14 +82,6 @@ def create_app():
|
|||||||
if cdclient is not None:
|
if cdclient is not None:
|
||||||
cdclient.close()
|
cdclient.close()
|
||||||
|
|
||||||
# @app.errorhandler(Exception)
|
|
||||||
# def handle_exception(e):
|
|
||||||
# app.logger.error(e)
|
|
||||||
# # pass through HTTP errors
|
|
||||||
# if isinstance(e, HTTPException):
|
|
||||||
# return e
|
|
||||||
# # now you're handling non-HTTP exceptions only
|
|
||||||
# return render_template("status_codes/500.html.j2", exception=e), 500
|
|
||||||
|
|
||||||
# add the commands to flask cli
|
# add the commands to flask cli
|
||||||
app.cli.add_command(init_db)
|
app.cli.add_command(init_db)
|
||||||
|
@ -76,7 +76,10 @@ def get_icon_lot(id):
|
|||||||
one=True
|
one=True
|
||||||
)[0]
|
)[0]
|
||||||
|
|
||||||
filename = filename.replace("..\\", "").replace("\\", "/")
|
if filename:
|
||||||
|
filename = filename.replace("..\\", "").replace("\\", "/")
|
||||||
|
else:
|
||||||
|
return redirect(url_for('luclient.unknown'))
|
||||||
|
|
||||||
cache = f'app/cache/{filename.split(".")[0]}.png'
|
cache = f'app/cache/{filename.split(".")[0]}.png'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user