[Zope3-checkins] CVS: Zope3/src/zope/products/zwiki -
interfaces.py:1.3
Philipp von Weitershausen
philikon at philikon.de
Thu Jan 15 05:49:41 EST 2004
Update of /cvs-repository/Zope3/src/zope/products/zwiki
In directory cvs.zope.org:/tmp/cvs-serv1505
Modified Files:
interfaces.py
Log Message:
value_type should not be a tuple, but a field.
=== Zope3/src/zope/products/zwiki/interfaces.py 1.2 => 1.3 ===
--- Zope3/src/zope/products/zwiki/interfaces.py:1.2 Tue Dec 16 07:10:38 2003
+++ Zope3/src/zope/products/zwiki/interfaces.py Thu Jan 15 05:49:39 2004
@@ -67,8 +67,8 @@
parents = List(
title = _(u"Wiki Page Parents"),
description = _(u"Parents of a a Wiki"),
- value_type = (TextLine(title=_(u"Parent Name"),
- description=_(u"Name of the parent wiki page.")),),
+ value_type = TextLine(title=_(u"Parent Name"),
+ description=_(u"Name of the parent wiki page.")),
required=False)
def reparent(parents):
More information about the Zope3-Checkins
mailing list