From cd63d7785a8805d8cdc1ca6fc81428b5c9262306 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Tue, 9 Dec 2025 15:41:29 +0100 Subject: [PATCH] IType interface: make prefix and container TextLine instead of BytesLine --- loops/interfaces.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/loops/interfaces.py b/loops/interfaces.py index b9040eb..9439288 100644 --- a/loops/interfaces.py +++ b/loops/interfaces.py @@ -699,18 +699,18 @@ class ITypeConcept(IConceptSchema, ILoopsAdapter, IOptions): source='loops.TypeInterfaceSource', required=False) - conceptManager = schema.BytesLine( + conceptManager = schema.TextLine( title=_(u'Concept Manager Name'), description=_(u'Name of the concept manager in which objects of this ' u'type should be created.'), - default=b'', #determined at runtime: 'concepts' or 'resources' + default='', #determined at runtime: 'concepts' or 'resources' required=False) - namePrefix = schema.BytesLine( + namePrefix = schema.TextLine( title=_(u'Name Prefix'), description=_(u'String that will be prepended to the (generated) name ' u'of a newly created object of this type.'), - default=b'', + default='', required=False) viewName = schema.TextLine(