We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4dda0ac + e7ceabc commit e712c7eCopy full SHA for e712c7e
utils/round-trip-syntax-test
@@ -72,8 +72,8 @@ class RoundTripTask(object):
72
logging.error('---===ERROR===--- Lex/parse had error'
73
' diagnostics, so not diffing.')
74
logging.error(' '.join(command))
75
- logging.error(self.stdout)
76
- logging.error(self.stderr)
+ logging.error(self.stdout.decode('utf-8', errors='replace'))
+ logging.error(self.stderr.decode('utf-8', errors='replace'))
77
raise RuntimeError()
78
79
contents = ''.join(map(lambda l: l.decode('utf-8', errors='replace'),
0 commit comments