Commit c86fac47 authored by hardy's avatar hardy

fixing typo to make it work

parent 88f9d88a
...@@ -3321,20 +3321,18 @@ def receive_signal(signum, frame): ...@@ -3321,20 +3321,18 @@ def receive_signal(signum, frame):
#loading xml action list from yaml #loading xml action list from yaml
import yaml import yaml
xml_class_list_file='' xml_class_list_file='ci-scripts/xml_class_list.yml'
if (os.path.isfile('xml_class_list.yml')): if (os.path.isfile(xml_class_list_file)):
xml_class_list_file='xml_class_list.yml' #file will be opened only if it exists
elif (os.path.isfile('ci-scripts/xml_class_list.yml')): with open(xml_class_list_file,'r') as file:
xml_class_list_file='ci-scripts/xml_class_list.yml' # The FullLoader parameter handles the conversion
#from YAML scalar values to Python dictionary format
xml_class_list = yaml.load(file,Loader=yaml.FullLoader)
else: else:
logging.error("XML action list yaml file cannot be found") logging.error("XML action list yaml file cannot be found")
sys.exit("XML action list yaml file cannot be found") sys.exit("XML action list yaml file cannot be found")
#file will be opened only if it exists
with open(xml_class_list_file,'r') as file:
# The FullLoader parameter handles the conversion
#from YAML scalar values to Python dictionary format
xml_class_list = yaml.load(file,Loader=yaml.FullLoader)
mode = '' mode = ''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment