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:
parent
c2385f6e63
commit
2d16e7766a
1 changed files with 2 additions and 2 deletions
|
@ -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='',
|
||||
|
|
Loading…
Add table
Reference in a new issue