From 07505e6301cdf71f4be67b45eceee4aad2b3bce0 Mon Sep 17 00:00:00 2001 From: Gregory Arndt Date: Tue, 1 Mar 2016 07:41:27 -0600 Subject: [PATCH] Bug 1252440 - Ignore unicode characters that cannot be converted when building graph r=wcosta MozReview-Commit-ID: 5CxG7NMivBO --HG-- extra : rebase_source : d4858f6f6bedf834a84a672f7862e0032c290a07 --- testing/taskcluster/mach_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/taskcluster/mach_commands.py b/testing/taskcluster/mach_commands.py index 7033a1327af2..c45ecf60c211 100644 --- a/testing/taskcluster/mach_commands.py +++ b/testing/taskcluster/mach_commands.py @@ -337,7 +337,7 @@ class Graph(object): len(vcs_info.changesets)) for c in vcs_info.changesets: sys.stderr.write('%s %s\n' % ( - c['node'][0:12], c['desc'].splitlines()[0])) + c['node'][0:12], c['desc'].splitlines()[0].encode('ascii', 'ignore'))) changed_files |= set(c['files'])