From b7fcfe2b4a1b53e2fb13f25008a6594ddd5d4aef Mon Sep 17 00:00:00 2001 From: arianagiroux Date: Sun, 24 Jul 2022 14:38:24 -0600 Subject: [PATCH] FIX: fixes path to template to reflect f2fb50e --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index c2894b5..37c2148 100755 --- a/app.py +++ b/app.py @@ -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'])