9 Oct
2002
9 Oct
'02
4:09 p.m.
On Wednesday 09 October 2002 15:46, Max M wrote:
###### from Globals import HTML class SomeClass: someFoo = HTML('<standard_html_header>Test!<standard_html_footer>') #####
Errm... Be exact. Perhaps this way: from Globals import HTML class SomeClass: def foo(self, REQUEST = None): """blah""" someFoo = HTML('<standard_html_header>Test!<standard_html_footer>') return someFoo(self, self.REQUEST) -- Regards, Bogdan When in danger, or in doubt, run in circles, scream and shout. -- Robert A. Heinlein