remove an ugly hack that had GetSliceFamily set the slice vref to omf
[plcapi.git] / PLC / Methods / AddConfFile.py
index 99cef97..bb11282 100644 (file)
@@ -1,4 +1,5 @@
 # $Id$
+# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -33,6 +34,6 @@ class AddConfFile(Method):
         conf_file = ConfFile(self.api, conf_file_fields)
         conf_file.sync()
 
-       self.event_objects = {'ConfFile': [conf_file['conf_file_id']]}
+        self.event_objects = {'ConfFile': [conf_file['conf_file_id']]}
 
         return conf_file['conf_file_id']