I'm just installing a new TG2.1 app on a fresh new Ubuntu server.
Finished installing everything went great but when I tried:
paster serve --reload development.ini
I got this error
from tg.render import render_genshi
ImportError: cannot import name render_genshi
Seems like this is standard and should work out of the box, what am I
missing?
rotem
If that is the case, please take in mind that the renderers should not
be accessed directly, render_genshi function has been removed in one
of the latest releases.
To render a genshi template you should use tg.render.render({},
'genshi', 'myapp.template.whatever')
> --
> You received this message because you are subscribed to the Google Groups "TurboGears" group.
> To post to this group, send email to turbo...@googlegroups.com.
> To unsubscribe from this group, send email to turbogears+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/turbogears?hl=en.
>