[Fuego] [PATCH] Benchmark.lmbench2-parser.py: Reslove indentation error
[email protected] Wed, 24 Aug 2022 14:43:02 +0530
| Newsgroups | dev.linux.lists.fuego |
|---|---|
| Message-ID | <[email protected]> |
From: sireesha <[email protected]> This was failing while processing the results, fixed indentation problem Signed-off-by: sireesha <[email protected]> --- tests/Benchmark.lmbench2/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Benchmark.lmbench2/parser.py b/tests/Benchmark.lmbench2/parser.py index 96732e3..32e0fc5 100755 --- a/tests/Benchmark.lmbench2/parser.py +++ b/tests/Benchmark.lmbench2/parser.py @@ -44,7 +44,7 @@ for line in lines: value = str(float(value.rstrip(".G"))*1000*1000*1000) elif value[-1] == 'T': value = str(float(value.rstrip(".T"))*1000*1000*1000*1000) - sublist.append(value) + sublist.append(value) t_index += 1 cur_file.close() -- 2.20.1