summaryrefslogtreecommitdiff
path: root/test/fixture
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-03-12 21:21:15 -0400
committerWilliam Deegan <bill@baddogconsulting.com>2017-03-12 21:21:15 -0400
commite7ed829caa341d4890555ab3c7ec42a7a45c76ab (patch)
tree274b1e5361f057e5825d91d040c0328b77f1455b /test/fixture
parentea518fc5f92d4b7928e2d6cb30723951254bfafd (diff)
downloadscons-e7ed829caa341d4890555ab3c7ec42a7a45c76ab.tar.gz
removed b from file open py2/3
Diffstat (limited to 'test/fixture')
-rw-r--r--test/fixture/wrapper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixture/wrapper.py b/test/fixture/wrapper.py
index f02ea03d..bd8187cc 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:]))