diff options
author | Daniel Moody <dmoody256@gmail.com> | 2017-04-23 19:26:25 (GMT) |
---|---|---|
committer | Daniel Moody <dmoody256@gmail.com> | 2017-04-23 19:26:25 (GMT) |
commit | bb04d9ccdacdc5f4d7e35d096889dfc23748631e (patch) | |
tree | 27201c57ec93806635f4d0ef8311256af4f85322 /QMTest | |
parent | f67ce4d87c9531675c2e26715e005234fda4386c (diff) | |
download | SCons-bb04d9ccdacdc5f4d7e35d096889dfc23748631e.zip SCons-bb04d9ccdacdc5f4d7e35d096889dfc23748631e.tar.gz SCons-bb04d9ccdacdc5f4d7e35d096889dfc23748631e.tar.bz2 |
Test is failing on Windows 7 and Linux when PRESERVE is used. dirlist is saved as unicode, so printing it must also be unicode.
Tested with py2 and py3.
Diffstat (limited to 'QMTest')
-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 3b745f8..20f1f14 100644 --- a/QMTest/TestCmd.py +++ b/QMTest/TestCmd.py @@ -987,7 +987,7 @@ class TestCmd(object): condition = self.condition if self._preserve[condition]: for dir in self._dirlist: - print("Preserved directory " + dir + "\n") + print(u"Preserved directory " + dir + "\n") else: list = self._dirlist[:] list.reverse() |