return False in {SliceTag,TagType}.permit_update() (we will fix this later
authorTony Mack <tmack@paris.CS.Princeton.EDU>
Mon, 6 Dec 2010 16:23:06 +0000 (11:23 -0500)
committerTony Mack <tmack@paris.CS.Princeton.EDU>
Mon, 6 Dec 2010 16:23:06 +0000 (11:23 -0500)
sfa/plc/network.py

index 2293ce1..b1c72da 100644 (file)
@@ -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: