FIX: fixes path to template to reflect f2fb50e

This commit is contained in:
Ariana Giroux 2022-07-24 14:38:24 -06:00
parent 224c724cc0
commit b7fcfe2b4a
1 changed files with 1 additions and 1 deletions

2
app.py
View File

@ -55,7 +55,7 @@ app = Flask(__name__)
def render(data={}):
return chevron.render(template=open('index.html', 'r'), data=data)
return chevron.render(template=open('index.mustache', 'r'), data=data)
@app.route("/api/serverstatus", methods=['GET'])