| Index: tools/bisect-builds.py
|
| diff --git a/tools/bisect-builds.py b/tools/bisect-builds.py
|
| index c2105b8b6ddc75d1ac7f5a53a78dfa652dd50ab4..7e07e3d03761dac31b0fdefa4cc611cd46f12c8d 100755
|
| --- a/tools/bisect-builds.py
|
| +++ b/tools/bisect-builds.py
|
| @@ -444,7 +444,8 @@ class PathContext(object):
|
| if self.use_local_cache:
|
| try:
|
| with open(cache_filename) as cache_file:
|
| - cache = json.load(cache_file)
|
| + for (key, value) in json.load(cache_file).items():
|
| + cache[key] = value
|
| revisions = cache.get(cache_dict_key, [])
|
| githash_svn_dict = cache.get('githash_svn_dict', {})
|
| if revisions:
|
|
|