diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-02-28 20:11:59 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-02-28 20:11:59 (GMT) |
commit | b8326ebfe788f9f165773cd4b2e649b6951a6e26 (patch) | |
tree | c42d125ef7b2701ec2c7a172bd4358beec1ba35e /test/scons-time/run | |
parent | e3b86af463e2a9eef98cd7c74469a5fff96f19c9 (diff) | |
download | SCons-b8326ebfe788f9f165773cd4b2e649b6951a6e26.zip SCons-b8326ebfe788f9f165773cd4b2e649b6951a6e26.tar.gz SCons-b8326ebfe788f9f165773cd4b2e649b6951a6e26.tar.bz2 |
fix test output read mode to not be binary py2/3
Diffstat (limited to 'test/scons-time/run')
-rw-r--r-- | test/scons-time/run/aegis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scons-time/run/aegis.py b/test/scons-time/run/aegis.py index 09c6aad..5235d98 100644 --- a/test/scons-time/run/aegis.py +++ b/test/scons-time/run/aegis.py @@ -64,7 +64,7 @@ expect = [ 'SCONS_LIB_DIR = %s' % test.tempdir_re('src', 'engine'), ] -content = test.read(test.workpath('foo-321-2.log')) +content = test.read(test.workpath('foo-321-2.log'),mode='r') def re_find(content, line): return re.search(line, content) |