From 6f372c44e1f8c530b798b5e495900c31fc5c33ec Mon Sep 17 00:00:00 2001 From: Brosef Date: Sat, 28 Feb 2026 13:12:28 +0000 Subject: [PATCH] Fixed bug introduced in aa1ceb7739 --- blueprints/static.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/static.py b/blueprints/static.py index b10ccd7..a35dd00 100644 --- a/blueprints/static.py +++ b/blueprints/static.py @@ -7,7 +7,7 @@ import os import flask -staticBP = flask.Blueprint('staticPage', __name__, static_folder='./www/') +staticBP = flask.Blueprint('staticPage', __name__, static_folder='../www/') @staticBP.route('/', defaults={'path': 'index.html'}) @staticBP.route('/')