- - removed anything having to do with event_type/event_object
[plcapi.git] / PLC / Methods / DeleteConfFile.py
index e36d677..165b231 100644 (file)
@@ -19,6 +19,7 @@ class DeleteConfFile(Method):
         ]
 
     returns = Parameter(int, '1 if successful')
+    
 
     def call(self, auth, conf_file_id):
         conf_files = ConfFiles(self.api, [conf_file_id])
@@ -27,5 +28,6 @@ class DeleteConfFile(Method):
 
         conf_file = conf_files[0]
         conf_file.delete()
+       self.object_ids = [conf_file['conf_file_id']]
 
         return 1