From 76e01fce2ed64914c3e2188cd0b0f0f8d616a65d Mon Sep 17 00:00:00 2001 From: EvilMuffinHa Date: Wed, 14 Oct 2020 21:50:01 -0400 Subject: [PATCH] heroku relative paths --- src/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.py b/src/app.py index 568e705..26af52f 100644 --- a/src/app.py +++ b/src/app.py @@ -44,7 +44,7 @@ def host(): hash = dohash(hostcode) resp = redirect(url_for("play", hash=hash)) resp.set_cookie("_gid", str(hostcode)) - with open("src/templates/games.json", "r") as f: + with open("templates/games.json", "r") as f: tmp = json.load(f) games[hash] = tmp games[hash]["hostcode"] = hostcode @@ -57,7 +57,7 @@ def host(): session.permanent = True return resp - with open("src/templates/games.json", "r") as f: + with open("templates/games.json", "r") as f: tmp = json.load(f) default = [tmp["tossup"], tmp["bonus"], tmp["power"], tmp["negs"]] return render_template('host.html', title="Host Game", version=str(version), form=form, default=default)