From b8326ebfe788f9f165773cd4b2e649b6951a6e26 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Tue, 28 Feb 2017 12:11:59 -0800 Subject: fix test output read mode to not be binary py2/3 --- test/scons-time/run/aegis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12