[Zope] calling DTML from DTML doesn't render

Jon Delheimer jon@norman.k12.ok.us
Tue, 18 Apr 2000 22:15:08 -0500 (CDT)


I have these objects:

lib/py/hello (Python Method) contains:

return "Hello, World"

lib/dtml/indirect (DTML Method) contains:

<dtml-return "lib.py.hello()">

test (DTML Method) contains:

<dtml-var "lib.dtml.indirect">


When I view test, it shows:

<dtml-return "lib.py.hello()">

I expect it to show:

Hello, World!


Why is this happening?