From 1b3d12ae639bed26d9de0b02d4b4a80c2bea6803 Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Sat, 3 Feb 2007 00:45:32 +0000 Subject: [PATCH] - remove max length from slice attribute values --- PLC/SliceAttributes.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PLC/SliceAttributes.py b/PLC/SliceAttributes.py index 2788b72..71b47e6 100644 --- a/PLC/SliceAttributes.py +++ b/PLC/SliceAttributes.py @@ -20,8 +20,7 @@ class SliceAttribute(Row): 'name': SliceAttributeType.fields['name'], 'description': SliceAttributeType.fields['description'], 'min_role_id': SliceAttributeType.fields['min_role_id'], - # XXX Arbitrary max, make configurable - 'value': Parameter(str, "Slice attribute value", max = 254), + 'value': Parameter(str, "Slice attribute value"), } class SliceAttributes(Table): -- 2.43.0