From 2d16e7766a4c1484ba0f91ad5c35f5b01c3200ac Mon Sep 17 00:00:00 2001 From: helmutm Date: Thu, 14 Aug 2008 12:24:03 +0000 Subject: [PATCH] fix field definition git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2813 fd906abe-77d9-0310-91a1-e0d9ade77398 --- commerce/interfaces.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commerce/interfaces.py b/commerce/interfaces.py index 69c9557..597e438 100644 --- a/commerce/interfaces.py +++ b/commerce/interfaces.py @@ -39,7 +39,7 @@ class IShop(Interface): """ A shop with products and customers. """ - name = schema.ASCII( + name = schema.ASCIILine( title=_(u'Shop Identifier'), description=_(u'An internal name uniquely identifying the shop.'), default='', @@ -68,7 +68,7 @@ class ISupplier(Interface): """ Manufactures or supplies products. """ - name = schema.ASCII( + name = schema.ASCIILine( title=_(u'Supplier Identifier'), description=_(u'An internal name uniquely identifying the supplier.'), default='',