Fixing quotes

This commit is contained in:
Devin Matte 2020-12-08 10:03:28 -05:00
parent 4bfac574db
commit 094f33d618

View file

@ -584,12 +584,12 @@ def logout():
return redirect(url_for('list_vms'), 302)
@app.route("/health")
@app.route('/health')
def health():
"""
Shows an ok status if the application is up and running
"""
return {"status": "ok"}
return {'status': 'ok'}
def exit_handler():