diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-03-13 01:21:15 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-03-13 01:21:15 (GMT) |
commit | eac948ded21626e43fccf9e816b2cf7db3af17c7 (patch) | |
tree | 274b1e5361f057e5825d91d040c0328b77f1455b /test/fixture | |
parent | 0da1117ef3e2d6dc28e1df8a5d2c898a6a316c8a (diff) | |
download | SCons-eac948ded21626e43fccf9e816b2cf7db3af17c7.zip SCons-eac948ded21626e43fccf9e816b2cf7db3af17c7.tar.gz SCons-eac948ded21626e43fccf9e816b2cf7db3af17c7.tar.bz2 |
removed b from file open py2/3
Diffstat (limited to 'test/fixture')
-rw-r--r-- | test/fixture/wrapper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixture/wrapper.py b/test/fixture/wrapper.py index f02ea03..bd8187c 100644 --- a/test/fixture/wrapper.py +++ b/test/fixture/wrapper.py @@ -2,5 +2,5 @@ import os import sys if '--version' not in sys.argv and '-dumpversion' not in sys.argv: path = os.path.join(os.path.dirname(os.path.relpath(__file__)), 'wrapper.out') - open(path, 'wb').write(b"wrapper.py\n") + open(path, 'w').write("wrapper.py\n") os.system(" ".join(sys.argv[1:])) |