X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/3be0713303de6ba83335a530894d75b86027e042..bae6b1cbc5eb00d2273c45b55ea0950949fce0a9:/views.py diff --git a/views.py b/views.py index f086bfd..911adfe 100644 --- a/views.py +++ b/views.py @@ -17,6 +17,6 @@ def node_view(request, path=None, **kwargs): raise Http404 if not node: raise Http404 - if subpath and not node.instance.accepts_subpath: + if subpath and not node.accepts_subpath: raise Http404 - return node.instance.render_to_response(request, path=path, subpath=subpath) + return node.render_to_response(request, path=path, subpath=subpath)