frappy_psi.mercury.IO.communicate: use UTF-8 for cmd and reply

This commit is contained in:
2026-08-11 15:53:28 +02:00
parent 4ac24459ec
commit 100cd62189
+1 -1
View File
@@ -66,7 +66,7 @@ class IO(StringIO):
timeout = 5
encoding = 'latin1'
@Command(StringType(), result=StringType(isUTF8=True))
@Command(StringType(isUTF8=True), result=StringType(isUTF8=True))
def communicate(self, cmd, noreply=False):
return super().communicate(cmd, noreply)