Signed-off-by: Ebbe Baß <ebbe@ping-mee.de>
master
Ebbe Baß 2022-08-12 02:24:55 +02:00
parent 785e3992e4
commit 39a036bd86
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ while True:
try:
output = str(host.readline())
output = output.replace("b'", "")
output = output.replace("\r\n'", "")
output = output.replace(str("\r\n'"), "")
print(output)
except KeyboardInterrupt:
exit()