From: Tony Mack Date: Mon, 6 Dec 2010 16:23:06 +0000 (-0500) Subject: return False in {SliceTag,TagType}.permit_update() (we will fix this later X-Git-Tag: sfa-1.0-9~3 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=582a618fbc6ce10c9f474e7fe5b6af5839f7e2ed;p=sfa.git return False in {SliceTag,TagType}.permit_update() (we will fix this later --- 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: