9 Sep
2001
9 Sep
'01
8:22 a.m.
from OFS import Folder
d'oh! I believe you meant: from OFS.Folder import Folder
class minimal(Implicit, Folder):
...and it's whinging here 'cos you're trying to subclass a module not a class ;-) Other than that, you don't need that Implicit there.
meta_types=() index_html=DTMLFile('www/index_html', globals()) manage_options=( def __init__(self, id):
BTW, for a _really_ minimal product, none of the above are necessary ;-) cheers, Chris