summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolai Hähnle <nicolai.haehnle@amd.com>2017-09-19 11:34:09 +0200
committerNicolai Hähnle <nicolai.haehnle@amd.com>2017-10-18 13:47:18 +0200
commitc754b537b1cef4f68e88e19caca4dd7ef13ee9d4 (patch)
tree5aaf1c0c97a928d1d2f88bf41d8060b485812360
parent349ab086ed7764c42db9b10881bbdc200e52527f (diff)
framework: fix outdated comment
Reviewed-by: Eric Anholt <eric@anholt.net>
-rw-r--r--framework/backends/json.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/framework/backends/json.py b/framework/backends/json.py
index c810dcaa5..440202612 100644
--- a/framework/backends/json.py
+++ b/framework/backends/json.py
@@ -230,8 +230,7 @@ def load_results(filename, compression_):
# regenerate values that we don't need to.
return _resume(filename)
else:
- # Look for a compressed result first, then a bare result, finally for
- # an old main file
+ # Look for a compressed result first, then a bare result.
for name in ['results.json.{}'.format(compression_), 'results.json']:
if os.path.exists(os.path.join(filename, name)):
filepath = os.path.join(filename, name)