From 5231def5927efd43cc158175546606d7baea0af8 Mon Sep 17 00:00:00 2001 From: "wu.zhihui" Date: Mon, 17 Oct 2016 12:17:24 +0800 Subject: bugfix due to directory adjustment Some files still use directory "data/". Fix it. Change-Id: Ia07f380c3e9c3e312d17b09728b050c818492f0f Signed-off-by: wu.zhihui --- scripts/ref_results/index_calculation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/ref_results') diff --git a/scripts/ref_results/index_calculation.py b/scripts/ref_results/index_calculation.py index 5ca4a46e..4ead79ff 100644 --- a/scripts/ref_results/index_calculation.py +++ b/scripts/ref_results/index_calculation.py @@ -13,7 +13,7 @@ def compute_index(total_measured, ref_result, count): def get_reference(*args): - with open('data/ref_results/reference.json') as reference_file: + with open('scripts/ref_results/reference.json') as reference_file: reference_djson = json.load(reference_file) for arg in args: ref_n = reference_djson.get(str(arg)) -- cgit 1.2.3-korg