summaryrefslogtreecommitdiff
path: root/QMTest
diff options
context:
space:
mode:
authorDaniel Moody <dmoody256@gmail.com>2017-04-23 15:26:25 -0400
committerDaniel Moody <dmoody256@gmail.com>2017-04-23 15:26:25 -0400
commite3b6dc87c23ce292683a9acf9bcc7fca02e17b7c (patch)
tree27201c57ec93806635f4d0ef8311256af4f85322 /QMTest
parent8140d471cb5340771c527ca3651b801b88dbcfa0 (diff)
downloadscons-e3b6dc87c23ce292683a9acf9bcc7fca02e17b7c.tar.gz
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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/QMTest/TestCmd.py b/QMTest/TestCmd.py
index 3b745f85..20f1f14d 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()