> Thank's, but can one say me why this is not working:
>
> class Charset:
>    def __init__(self):
>       web.header("Content-Type","text/html; charset=iso-8859-15")
>
> class Work(Charset):
>    def __init__(self):
>       Charset.__inti__(self)
>
>    def GET(self):
>      web.render(theTemplate)

Don't know if it has anything to do with your problem, but you
miss-typed __init__ when calling the parent constructor from Work

Regards,
Hermann Käser
http://theragingche.com/

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web.py" 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/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to