diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-04-03 21:49:56 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-04-03 21:49:56 (GMT) |
commit | f80aee089f44d50877e65f049424df212c867ff3 (patch) | |
tree | 51f60bb7f6239e6e0c5ed2cdf7c2af7163831c63 /test/QT/source-from-ui.py | |
parent | 9f917ba625b61071a4c181d98f1e9dada4dbd569 (diff) | |
download | SCons-f80aee089f44d50877e65f049424df212c867ff3.zip SCons-f80aee089f44d50877e65f049424df212c867ff3.tar.gz SCons-f80aee089f44d50877e65f049424df212c867ff3.tar.bz2 |
py2/3 mode=r/w fixes
Diffstat (limited to 'test/QT/source-from-ui.py')
-rw-r--r-- | test/QT/source-from-ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/QT/source-from-ui.py b/test/QT/source-from-ui.py index b8be72e..7922717 100644 --- a/test/QT/source-from-ui.py +++ b/test/QT/source-from-ui.py @@ -124,7 +124,7 @@ test.must_not_exist(test.workpath(moc)) test.must_not_exist(test.workpath(cpp)) test.must_not_exist(test.workpath(h)) -cppContents = test.read(test.workpath('build', cpp)) +cppContents = test.read(test.workpath('build', cpp), mode='r') test.fail_test(cppContents.find('#include "aaa.ui.h"') == -1) test.run(arguments = "variant_dir=1 chdir=1 " + |