aboutsummaryrefslogtreecommitdiffstats
path: root/Metrics/Metrics-Calculation/metrics_plot/utils/readCSV.py
diff options
context:
space:
mode:
Diffstat (limited to 'Metrics/Metrics-Calculation/metrics_plot/utils/readCSV.py')
-rw-r--r--Metrics/Metrics-Calculation/metrics_plot/utils/readCSV.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Metrics/Metrics-Calculation/metrics_plot/utils/readCSV.py b/Metrics/Metrics-Calculation/metrics_plot/utils/readCSV.py
index b27a0ffc..33378ce5 100644
--- a/Metrics/Metrics-Calculation/metrics_plot/utils/readCSV.py
+++ b/Metrics/Metrics-Calculation/metrics_plot/utils/readCSV.py
@@ -29,7 +29,8 @@ def readcsvfile(filename):
29 try: 29 try:
30 contents[arr[0]] = list(map(int, arr[1:])) 30 contents[arr[0]] = list(map(int, arr[1:]))
31 except: 31 except:
32 print(arr[0], ' is not integer') 32 message = arr[0], ' is not integer'
33 #print(message)
33 f.close() 34 f.close()
34 return contents 35 return contents
35 36