X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/77910c8b4d5e1661e53f2a0500fa23654b677c4a..e3037e2cf8a7ad3d0c3dba94083d1753301f581b:/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)