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