break
for section in section_match:
section_name = section[0]
if section_name == GLOBAL:
continue
parameter_metadata[section_name] = {}
parameter_metadata[section_name].update(global_metadata)
parameter_metadata[section_name].update(ExtractFioParameters(section[1]))
After Change
dictionaries of sample metadata as value.
job_file = job_file.replace(JOB_STONEWALL_PARAMETER, "")
config = ConfigParser.ConfigParser()
config.readfp(io.BytesIO(job_file))
sections = config.__dict__["_sections"]
global_metadata = {}
if GLOBAL in sections: