diff options
author | 2018-03-29 23:05:52 +0100 | |
---|---|---|
committer | 2018-03-29 23:05:52 +0100 | |
commit | a9de731b325778d95cd7a5f12a67dd393dbf1d0f (patch) | |
tree | 138c9b4dfb3016e479def166272f46ec83e41b5e /pysite/views/main/logout.py | |
parent | Fix broken countdown static file url (diff) |
Rewrite URLs in templates to use `url_for()`
Diffstat (limited to 'pysite/views/main/logout.py')
-rw-r--r-- | pysite/views/main/logout.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/views/main/logout.py b/pysite/views/main/logout.py index fce30972..2461450d 100644 --- a/pysite/views/main/logout.py +++ b/pysite/views/main/logout.py @@ -4,8 +4,8 @@ from pysite.base_route import RouteView class LogoutView(RouteView): - name = "logout" path = "/auth/logout" + name = "logout" def get(self): if self.logged_in: |