From 60ab05ac218f62672f286df33db1855e7aba913b Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Thu, 25 Feb 2016 17:42:44 -0800 Subject: allow run_tests.py to pass under python 2.6 --- tools/run_tests/report_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/run_tests/report_utils.py b/tools/run_tests/report_utils.py index 0032a98523..df114e5dae 100644 --- a/tools/run_tests/report_utils.py +++ b/tools/run_tests/report_utils.py @@ -47,7 +47,7 @@ def _filter_msg(msg, output_format): # that make XML report unparseable. filtered_msg = filter( lambda x: x in string.printable and x != '\f' and x != '\v', - msg.decode(errors='ignore')) + msg.decode('UTF-8', 'ignore')) if output_format == 'HTML': filtered_msg = filtered_msg.replace('"', '"') return filtered_msg -- cgit v1.2.3