Merge the OMF 6 branch
[nepi.git] / src / nepi / resources / all / collector.py
index 504a63f..5c4d3c6 100644 (file)
@@ -56,10 +56,10 @@ class Collector(ResourceManager):
                 default = tempfile.gettempdir(),
                 flags = Flags.Design)
 
-        user_run_id = Attribute("useRunId", 
+        use_run_id = Attribute("useRunId", 
                 "If set to True stores traces into a sub directory named after "
                 "the RUN ID assigned by the EC", 
-                type = types.Bool,
+                type = Types.Bool,
                 default = False,
                 flags = Flags.Design)
 
@@ -75,7 +75,7 @@ class Collector(ResourceManager):
         cls._register_attribute(store_dir)
         cls._register_attribute(sub_dir)
         cls._register_attribute(rename)
-        cls._register_attribute(useRunId)
+        cls._register_attribute(use_run_id)
 
     def __init__(self, ec, guid):
         super(Collector, self).__init__(ec, guid)