From c86fac47b9d56cd9033c2dd266075f38058c890a Mon Sep 17 00:00:00 2001
From: hardy <remi.hardy@openairinterface.org>
Date: Mon, 31 Aug 2020 15:36:24 +0200
Subject: [PATCH] fixing typo to make it work

---
 ci-scripts/main.py | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

diff --git a/ci-scripts/main.py b/ci-scripts/main.py
index 93fe2b12fa6..55eb7ad075b 100644
--- a/ci-scripts/main.py
+++ b/ci-scripts/main.py
@@ -3321,20 +3321,18 @@ def receive_signal(signum, frame):
 
 #loading xml action list from yaml
 import yaml
-xml_class_list_file=''
-if (os.path.isfile('xml_class_list.yml')):
-	xml_class_list_file='xml_class_list.yml'
-elif (os.path.isfile('ci-scripts/xml_class_list.yml')):
-	xml_class_list_file='ci-scripts/xml_class_list.yml'
+xml_class_list_file='ci-scripts/xml_class_list.yml'
+if (os.path.isfile(xml_class_list_file)):
+	#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)
 else:
 	logging.error("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 = ''
 
-- 
GitLab