From 266fa5d73618b46a4129a4b10f37f34c5f3dd166 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 16 May 2020 12:49:02 -0400 Subject: [PATCH] Point the commit viewer at the new commit dir --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 810e1eb..e022609 100644 --- a/app.py +++ b/app.py @@ -60,7 +60,7 @@ def commits(): game_names = ["stroll", "feast", "gorge", "satiate", "macrovision"] games = [] for game in game_names: - data = json.load(open("nightly/{0}/nightly.json".format(game))) + data = json.load(open("commits/{0}.json".format(game))) games.append({"name": game, "commits": data}) return render_template("commits.html", games=games)