aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/route_manager.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-04-05 09:08:47 +0100
committerGravatar Gareth Coles <[email protected]>2018-04-05 09:08:47 +0100
commit8787ade4f3f3adefd33237bf8ddfcfec4ca424eb (patch)
tree872b764eb7227fd8466981824881298b9056e268 /pysite/route_manager.py
parentFun fact: docutils is NOT stdlib (diff)
Attempt to fix CSRF; add debug info to staff page
Diffstat (limited to 'pysite/route_manager.py')
-rw-r--r--pysite/route_manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/route_manager.py b/pysite/route_manager.py
index df7cbc36..b36ccadd 100644
--- a/pysite/route_manager.py
+++ b/pysite/route_manager.py
@@ -34,7 +34,7 @@ class RouteManager:
self.app.secret_key = os.environ.get("WEBPAGE_SECRET_KEY", "super_secret")
self.app.config["SERVER_NAME"] = os.environ.get("SERVER_NAME", "pythondiscord.local:8080")
self.app.config["PREFERRED_URL_SCHEME"] = PREFERRED_URL_SCHEME
- self.app.config["WTF_CSRF_CHECK_DEFAULT "] = False # We only want to protect specific routes
+ self.app.config["WTF_CSRF_CHECK_DEFAULT"] = False # We only want to protect specific routes
self.app.before_request(self.db.before_request)
self.app.teardown_request(self.db.teardown_request)