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('/')