[Zope] calling dtml method from external method

Chris Withers chrisw@nipltd.com
Wed, 07 Feb 2001 09:46:31 +0000


Marty Stitt wrote:
> 
>   def MyExternalMethod(self, PARMS):
>     return self.TestZopeTime(REQUEST=self.REQUEST)

Hmmm... try the following:

def MyExternalMethod(self, PARMS):
     return self.TestZopeTime(self,REQUEST=self.REQUEST)

cheers,

Chris