From 289ce32fdd4aaaba7283b15d7746e2f9fa5a9d61 Mon Sep 17 00:00:00 2001 From: Marc Fiuczynski Date: Fri, 29 May 2009 20:54:46 +0000 Subject: [PATCH] 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 --- PLC/Methods/GetSlivers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']}) -- 2.43.0