Skip to content

Commit d8244e3

Browse files
committed
Fixing linting issues
1 parent 2a752dd commit d8244e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packet/routes/shared.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ def update_service_worker():
8686
@packet_auth
8787
@before_request
8888
def not_found(e, info=None):
89-
return render_template("not_found.html", info=info), 404
89+
return render_template('not_found.html', e=e, info=info), 404
9090

9191

9292
@app.errorhandler(500)
9393
@packet_auth
9494
@before_request
9595
def error(e, info=None):
96-
return render_template("error.html", e=e, info=info), 500
96+
return render_template('error.html', e=e, info=info), 500

0 commit comments

Comments
 (0)