X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/06dc22d5cbde2329fe2e5926243697e492b0a9ef..fdf8e669733ebdd25c98afc11fcf95bcb79a5126:/views.py diff --git a/views.py b/views.py index f5a2c7f..598be36 100644 --- a/views.py +++ b/views.py @@ -28,7 +28,7 @@ def node_view(request, path=None, **kwargs): subpath = request.node.subpath # Explicitly disallow trailing slashes if we are otherwise at a node's url. - if request.path and request.path != "/" and request.path[-1] == "/" and subpath == "/": + if request._cached_node_path != "/" and request._cached_node_path[-1] == "/" and subpath == "/": return HttpResponseRedirect(node.get_absolute_url()) if not node.handles_subpath(subpath):