This commit was manufactured by cvs2svn to create branch
[plcapi.git] / PLC / Methods / DeleteSliceAttributeType.py
index db7816a..922b6ac 100644 (file)
@@ -21,6 +21,7 @@ class DeleteSliceAttributeType(Method):
 
     returns = Parameter(int, '1 if successful')
 
+
     def call(self, auth, attribute_type_id_or_name):
         attribute_types = SliceAttributeTypes(self.api, [attribute_type_id_or_name])
         if not attribute_types:
@@ -28,5 +29,6 @@ class DeleteSliceAttributeType(Method):
         attribute_type = attribute_types[0]
 
         attribute_type.delete()
+       self.object_ids = [attribute_type['attribute_type_id']]
 
         return 1