[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services - ConfigurationInterfaces.py:1.11
Jim Fulton
jim@zope.com
Sun, 22 Dec 2002 12:25:46 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services
In directory cvs.zope.org:/tmp/cvs-serv11067
Modified Files:
ConfigurationInterfaces.py
Log Message:
Fixed the permission field definition to use a title keyword
argument. A "doc" string had been given which is a wildly common
mistake.
=== Zope3/lib/python/Zope/App/OFS/Services/ConfigurationInterfaces.py 1.10 => 1.11 ===
--- Zope3/lib/python/Zope/App/OFS/Services/ConfigurationInterfaces.py:1.10 Sat Dec 21 15:02:13 2002
+++ Zope3/lib/python/Zope/App/OFS/Services/ConfigurationInterfaces.py Sun Dec 22 12:25:46 2002
@@ -86,7 +86,8 @@
"""Configuration object that configures a component associated with a name
"""
- permission = PermissionField("The permission needed to use the component.")
+ permission = PermissionField(
+ title=u"The permission needed to use the component.")
componentPath = Attribute("The physical path to the component")