Tres Seaver <tsea...@agendaless.com> added the comment:

Your view function should us either the "context, request" calling convention::

  def my_view(context, request):
      return {'project':'foo'}

or the "request only" calling convention:

  def my_view(request):
      return {'project':'foo'}

See http://docs.repoze.org/bfg/1.2/narr/views.html#view-callables

----------
status: unread -> resolved

__________________________________
Repoze Bugs <b...@bugs.repoze.org>
<http://bugs.repoze.org/issue140>
__________________________________
_______________________________________________
Repoze-dev mailing list
Repoze-dev@lists.repoze.org
http://lists.repoze.org/listinfo/repoze-dev

Reply via email to