mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-02-12 13:01:51 +00:00
Fixing quotes
This commit is contained in:
parent
4bfac574db
commit
094f33d618
1 changed files with 2 additions and 2 deletions
|
@ -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():
|
||||
|
|
Loading…
Reference in a new issue