diff --git a/app/app.db b/app/app.db index 9791b97..09af5f0 100644 Binary files a/app/app.db and b/app/app.db differ diff --git a/app/results/main_select.py b/app/results/main_select.py index e3edf0b..fb57dd1 100644 --- a/app/results/main_select.py +++ b/app/results/main_select.py @@ -79,7 +79,10 @@ def best(file_name): with open(os.path.join(Folders.results, file_name)) as f: data = json.load(f) except Exception as e: - return render_template("error.html", message=str(e)) + return render_template( + "error.html", + message=f"This best results file ({file_name}) has not been created yet!", + ) return render_template("best.html", data=data) diff --git a/app/results/templates/best.html b/app/results/templates/best.html index 9ab638e..be1977b 100644 --- a/app/results/templates/best.html +++ b/app/results/templates/best.html @@ -1,6 +1,6 @@ {% extends "base.html" %} {% block content %} -