[Zope-CMF] ToolInit deprecation warnings

Jens Vagelpohl jens at dataflake.org
Sat Jul 23 13:43:25 EDT 2005


On 23 Jul 2005, at 18:21, David Pratt wrote:
> /usr/local/zope/instance1/Products/CMFCore/utils.py:427:  
> DeprecationWarning: The product_name parameter of ToolInit is  
> deprecated and will be ignored in CMF1.6: kupu
>   DeprecationWarning)
>
> I checked with CMFDefault to see it there was a different class to  
> use but it is as follows:
>
> from Products.CMFCore.utils import ToolInit
>
>     ToolInit( 'CMF Default Tool'
>             , tools=tools
>             , icon='tool.gif'
>             ).initialize( context )
>
> What should I be using instead of ToolInit so that code is more  
> futureproof and to avoid the deprecation warnings.

Please read the warning more carefully, it spells out very clearly  
what the problem is. It's not ToolInit that's deprecated, but passing  
an argument named "product_name" to it. One of your products does.  
Find it andd eliminate the extra argument.

jens



More information about the Zope-CMF mailing list