From: Marc Fiuczynski Date: Fri, 29 May 2009 20:54:46 +0000 (+0000) Subject: hotfix: slice_tags is a list of Table dictionary entries and slice_tag['tagname'... X-Git-Tag: PLCAPI-4.3-17~2 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=289ce32fdd4aaaba7283b15d7746e2f9fa5a9d61;p=plcapi.git hotfix: slice_tags is a list of Table dictionary entries and slice_tag['tagname'] is a unique string for which the __eq__ in Table.py croaks --- diff --git a/PLC/Methods/GetSlivers.py b/PLC/Methods/GetSlivers.py index 9fc24ea..ced6fc6 100644 --- a/PLC/Methods/GetSlivers.py +++ b/PLC/Methods/GetSlivers.py @@ -80,7 +80,7 @@ def get_slivers(api, slice_filter, node = None): # Do not set any nodegroup slice attributes for # which there is at least one sliver attribute # already set. - if slice_tag['tagname'] not in slice_tags: + if slice_tag not in slice_tags: attributes.append({'tagname': slice_tag['tagname'], 'value': slice_tag['value']})