Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(435)

Unified Diff: scripts/slave/recipe_modules/auto_bisect/bisect_results.py

Issue 1311043005: Some commit messages contain unicode characters, making them strings. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@hax
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/auto_bisect/bisect_results.py
diff --git a/scripts/slave/recipe_modules/auto_bisect/bisect_results.py b/scripts/slave/recipe_modules/auto_bisect/bisect_results.py
index ffafc55df19ba70a945fcd5b94e1f037c28ab16f..e4970d7babdcec1aa9cc89f800f7dcd46700c18e 100644
--- a/scripts/slave/recipe_modules/auto_bisect/bisect_results.py
+++ b/scripts/slave/recipe_modules/auto_bisect/bisect_results.py
@@ -140,7 +140,7 @@ class BisectResults(object):
'cl': self.culprit_cl_hash
}
body += self._compose_revisions_table()
- return body
+ return body.encode('ascii','replace')
def _make_footer(self):
return _RESULTS_THANKYOU
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698