summaryrefslogtreecommitdiff
path: root/QMTest
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-03-10 17:01:03 -0500
committerWilliam Deegan <bill@baddogconsulting.com>2017-03-10 17:01:03 -0500
commit6b816250461cbf5c985e8f5883917e013d2fd6fb (patch)
tree72d56476453049adcfeb4b06011870c74c95081d /QMTest
parent590412e67b18a0715488f9dc11c7816d29a5a34e (diff)
parentedf7932e0693400c806e97b47f8cf4347d33a6bb (diff)
downloadscons-6b816250461cbf5c985e8f5883917e013d2fd6fb.tar.gz
Merged scons/scons into default
Diffstat (limited to 'QMTest')
-rw-r--r--QMTest/TestCmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/QMTest/TestCmd.py b/QMTest/TestCmd.py
index 370101bb..96e07a98 100644
--- a/QMTest/TestCmd.py
+++ b/QMTest/TestCmd.py
@@ -783,7 +783,7 @@ class Popen(subprocess.Popen):
return 0
try:
- written = os.write(self.stdin.fileno(), input)
+ written = os.write(self.stdin.fileno(), bytearray(input,'utf-8'))
except OSError as why:
if why.args[0] == errno.EPIPE: #broken pipe
return self._close('stdin')