This commit is contained in:
Aevann1 2021-12-15 01:41:25 +02:00
parent 60023d4a0c
commit 84e82b9a65

View file

@ -16,7 +16,7 @@ import gevent
from werkzeug.middleware.proxy_fix import ProxyFix from werkzeug.middleware.proxy_fix import ProxyFix
import redis import redis
if environ.get("CHRISTMAS"): templates = 'templates/CHRISTMAS' if int(environ.get("CHRISTMAS", 0)): templates = 'templates/CHRISTMAS'
else: templates = 'templates' else: templates = 'templates'
app = Flask(__name__, template_folder=templates) app = Flask(__name__, template_folder=templates)