##// END OF EJS Templates
py3: add a missing b'' for Windows...
Matt Harbison -
r39742:030d558c default
parent child Browse files
Show More
@@ -1153,7 +1153,7 b' class Test(unittest.TestCase):'
1153 1153 killdaemons(env['DAEMON_PIDS'])
1154 1154 return ret
1155 1155
1156 output = ''
1156 output = b''
1157 1157 proc.tochild.close()
1158 1158
1159 1159 try:
@@ -1177,7 +1177,7 b' class Test(unittest.TestCase):'
1177 1177 output = re.sub(s, r, output)
1178 1178
1179 1179 if normalizenewlines:
1180 output = output.replace('\r\n', '\n')
1180 output = output.replace(b'\r\n', b'\n')
1181 1181
1182 1182 return ret, output.splitlines(True)
1183 1183
General Comments 0
You need to be logged in to leave comments. Login now