lpcmanager
Clone
Summary
Browse
Changes
Graph
Update StdoutPseudoFile.py to python 3
2024-04-09, Edouard Tisserant
7b123fc70d19
Parents
613633227bc2
Children
a70356db4612
Update StdoutPseudoFile.py to python 3
1 files changed, 1 insertions(+), 1 deletions(-)
+1
-1
StdoutPseudoFile.py
--- a/StdoutPseudoFile.py Fri Mar 08 11:11:52 2024 +0100
+++ b/StdoutPseudoFile.py Tue Apr 09 16:39:47 2024 +0200
@@ -15,7 +15,7 @@
def readline(self):
idx = self.Buffer.find("\n")
while idx == -1:
- text = self.socket.recv(2048)
+ text = self.socket.recv(2048).decode()
if text == "":
return ""
self.Buffer += text