On 26 jan, 19:05, J. Pablo Fernández <[EMAIL PROTECTED]> wrote:
>
> ...
>
> class PollController(BaseController):
> def index(self):
> return render("/poll/index.html")
>
> ...
>
> __import__(moduleOrReq)
> ImportError: No module named /poll/index
>
> What am I doing wrong?
>
You need to remove .html in return render("/poll/index.html") =>
return render("/poll/index"). The .html extention is added
automatically by genshi.
Antonin
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---