diff options
Diffstat (limited to 'tools/isolate/merge_isolate.py')
-rwxr-xr-x | tools/isolate/merge_isolate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/isolate/merge_isolate.py b/tools/isolate/merge_isolate.py index 07eb8676..df6f92b 100755 --- a/tools/isolate/merge_isolate.py +++ b/tools/isolate/merge_isolate.py @@ -359,7 +359,7 @@ def load_gyps(items): configs = Configs([]) for item in items: logging.debug('loading %s' % item) - new_config = load_gyp(eval_content(open(item, 'rb').read())) + new_config = load_gyp(eval_content(open(item, 'r').read())) logging.debug('has OSes: %s' % ','.join(k for k in new_config.per_os if k)) configs = union(configs, new_config) logging.debug('Total OSes: %s' % ','.join(k for k in configs.per_os if k)) |