I have a simple class in app.py<br><br>class Master(grok.View):<br>&nbsp;&nbsp;&nbsp; &quot;&quot;&quot;The master page template macro.&quot;&quot;&quot;<br>&nbsp;&nbsp;&nbsp; # register this view for all objects<br>&nbsp;&nbsp;&nbsp; grok.context(Interface)<br><br><br>
there is a master template in app_templates/master.pt<br><br>The following code gives a traversal error:<br><br>hey = Master<br>hey(None,None)._render_template()<br>*** TraversalError: (None, &#39;master.css&#39;)<br>