diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-05-16 22:55:47 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-05-16 22:55:47 (GMT) |
commit | 28365579c3ee73310c8ea1beac21caf4cbfc959d (patch) | |
tree | 27b0deadd1618ee907ad03edbd8b19c80bc1a54a /QMTest/TestCmd.py | |
parent | ad585a82b9ae5108914efef69f172d76061e81c5 (diff) | |
download | SCons-28365579c3ee73310c8ea1beac21caf4cbfc959d.zip SCons-28365579c3ee73310c8ea1beac21caf4cbfc959d.tar.gz SCons-28365579c3ee73310c8ea1beac21caf4cbfc959d.tar.bz2 |
PY2/3 Undo debugging change to universal_newlines in Popen call
Diffstat (limited to 'QMTest/TestCmd.py')
-rw-r--r-- | QMTest/TestCmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/QMTest/TestCmd.py b/QMTest/TestCmd.py index 4b025d6..ff0e0c5 100644 --- a/QMTest/TestCmd.py +++ b/QMTest/TestCmd.py @@ -1375,7 +1375,7 @@ class TestCmd(object): stdin=stdin, stdout=subprocess.PIPE, stderr=stderr_value, - universal_newlines=False) + universal_newlines=universal_newlines) self.process = p return p |