mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-03 23:30:46 +00:00
Bug 847256 - fix marionette logging UnicodeEncodeError, r=mdas
This commit is contained in:
parent
585a307b78
commit
6bfc43a1fa
@ -66,7 +66,7 @@ class MarionetteTestResult(unittest._TextTestResult):
|
||||
return
|
||||
self.stream.writeln('START LOG:')
|
||||
for line in testcase.loglines:
|
||||
self.stream.writeln(' '.join(line))
|
||||
self.stream.writeln(' '.join(line).encode('ascii', 'replace'))
|
||||
self.stream.writeln('END LOG:')
|
||||
|
||||
def getPerfData(self, test):
|
||||
|
Loading…
x
Reference in New Issue
Block a user