Fix crash when sendLine() is called with bytes and --show-io is given.

This commit is contained in:
2021-02-17 23:37:26 +01:00
committed by Valentin Lorentz
parent fe0d65f7c8
commit c9dbba985c

View File

@ -109,8 +109,15 @@ class ClientMock:
else:
assert ret is None, ret
if self.show_io:
print('{time:.3f}{ssl} {client} -> S: {line}'.format(
if isinstance(line, str):
escaped_line = line
escaped = ''
else:
escaped_line = repr(line)
escaped = ' (escaped)'
print('{time:.3f}{escaped}{ssl} {client} -> S: {line}'.format(
time=time.time(),
escaped=escaped,
ssl=' (ssl)' if self.ssl else '',
client=self.name,
line=line.strip('\r\n')))
line=escaped_line.strip('\r\n')))