From: Mark Huang Date: Sat, 3 Feb 2007 00:45:32 +0000 (+0000) Subject: - remove max length from slice attribute values X-Git-Tag: pycurl-7_13_1~10 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=1b3d12ae639bed26d9de0b02d4b4a80c2bea6803;p=plcapi.git - remove max length from slice attribute values --- diff --git a/PLC/SliceAttributes.py b/PLC/SliceAttributes.py index 2788b72a..71b47e65 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):