From e3422f377d992ef4c486427d9aff5836a5febf34 Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Thu, 9 Jul 2020 21:46:04 +0200 Subject: [PATCH] remove default static/-handler --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index added32..a9d4caa 100755 --- a/server.py +++ b/server.py @@ -16,7 +16,7 @@ VEREIN_SECTIONS_DIR = "sections/" MAIN_LINKS_DIR = "main-links/" NEWS_DIR = "news/" -app = flask.Flask("athq-landing-page") +app = flask.Flask("athq-landing-page", static_folder=None) mainConfig = dict() with open("config.json") as f: mainConfig = json.load(f)