fix field definition

git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2813 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2008-08-14 12:24:03 +00:00
parent c2385f6e63
commit 2d16e7766a

View file

@ -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='',