summaryrefslogtreecommitdiffstats
path: root/test/option--Q.py
diff options
context:
space:
mode:
authorCraig Rodrigues <rodrigc@FreeBSD.org>2017-03-11 12:21:48 (GMT)
committerCraig Rodrigues <rodrigc@FreeBSD.org>2017-03-11 12:21:48 (GMT)
commit80aba339e2acac074840aedd0ceb8553ed77d127 (patch)
tree06561dabd3afff6643adf92ec3146b495162669c /test/option--Q.py
parent055c8046afce036fdfad4bc8d60e4059da148f7d (diff)
downloadSCons-80aba339e2acac074840aedd0ceb8553ed77d127.zip
SCons-80aba339e2acac074840aedd0ceb8553ed77d127.tar.gz
SCons-80aba339e2acac074840aedd0ceb8553ed77d127.tar.bz2
Remove 'b' from open, not needed py2/3
Diffstat (limited to 'test/option--Q.py')
-rw-r--r--test/option--Q.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option--Q.py b/test/option--Q.py
index 4322bcd..da6d2e1 100644
--- a/test/option--Q.py
+++ b/test/option--Q.py
@@ -34,7 +34,7 @@ test = TestSCons.TestSCons()
test.write('build.py', r"""
import sys
-file = open(sys.argv[1], 'wb')
+file = open(sys.argv[1], 'w')
file.write("build.py: %s\n" % sys.argv[1])
file.close()
""")