From 582a618fbc6ce10c9f474e7fe5b6af5839f7e2ed Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 6 Dec 2010 11:23:06 -0500 Subject: [PATCH] return False in {SliceTag,TagType}.permit_update() (we will fix this later --- sfa/plc/network.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sfa/plc/network.py b/sfa/plc/network.py index 2293ce1b..b1c72da7 100644 --- a/sfa/plc/network.py +++ b/sfa/plc/network.py @@ -250,7 +250,7 @@ class Slicetag: # xxx FIXME - the new model in PLCAPI has roles and not min_role_id #if role_id > self.min_role_id: # return False - return True + return False def change(self, value): if self.value != value: @@ -303,7 +303,7 @@ class TagType: # XXX FIXME ditto #if role_id > self.min_role_id: # return False - return True + return False class Network: -- 2.43.0