# HG changeset patch # User Augie Fackler # Date 1429042870 14400 # Node ID c4217a046b62c6b7fcae7f4659a7e66b28678e79 # Parent 9c28f3236677d8321fedd7258b72713ab44ee223 run-tests: record faildata using bytes instead of str lines is already bytes, so this is just fixing a bug on python 3. diff -r 9c28f3236677 -r c4217a046b62 tests/run-tests.py --- a/tests/run-tests.py Tue Apr 14 16:18:11 2015 -0400 +++ b/tests/run-tests.py Tue Apr 14 16:21:10 2015 -0400 @@ -1304,7 +1304,7 @@ rename(test.errpath, '%s.out' % test.path) accepted = True if not accepted and not failed: - self.faildata[test.name] = ''.join(lines) + self.faildata[test.name] = b''.join(lines) return accepted