diff options
Diffstat (limited to 'app.py')
| -rwxr-xr-x | app.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ def get_template_items(title, db): @app.route("/~") def index(): with database.Database() as db: - with open("static/index.md", "r") as f: + with open(os.path.join("static", "index.md"), "r") as f: return flask.render_template( "index.html.j2", **get_template_items("eva's site", db), |
