[Zope-PTK] Tools

Shane Hathaway shane@digicool.com
Mon, 15 Jan 2001 09:28:39 -0500


Lucas Hofman wrote:
> Shane, it does not work:
> 
> I created a file called demoCatalogTool in PTKDemo which has the
> followingcontent:
>
> from Products.PTKBase.CatalogTool import CatalogTool
> from Products.PTKBase.PortalObject import PortalObjectBase
> 
> class DemoCatalogTaol (CatalogTool):

You must be more careful in your typing.  You need to name the file
"DemoCatalogTool.py" not "demoCatalogTool.py" and the above class
definition is misspelled ("Taol" != "Tool".)

Shane