diff options
author | 2018-04-29 20:27:49 +0100 | |
---|---|---|
committer | 2018-04-29 20:27:49 +0100 | |
commit | 23b17a6a1e01d199ca3bbb69e628a2b0f3b262bb (patch) | |
tree | 852de86f912f96e03911eb62c748d990113bd8a0 /pysite | |
parent | pipenv and dockerfile (#62) (diff) |
Fix for wiki.history.show with slashes in URL
Diffstat (limited to 'pysite')
-rw-r--r-- | pysite/views/wiki/history/show.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/views/wiki/history/show.py b/pysite/views/wiki/history/show.py index 50fc5d73..00a1dc27 100644 --- a/pysite/views/wiki/history/show.py +++ b/pysite/views/wiki/history/show.py @@ -8,7 +8,7 @@ from pysite.mixins import DBMixin class RevisionsListView(RouteView, DBMixin): - path = "/history/show/<string:page>" + path = "/history/show/<path:page>" name = "history.show" table_name = "wiki_revisions" |