X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/08f6ca2120d8c01bdc32b4c271772bde77db3865..8fff8672235eafa1cf55739d460119b3be5faf5f:/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):