util/ProcessLogger.py
changeset 3816 032bf4f225d0
parent 3786 50935528d313
child 3892 1675b5533e9e
--- a/util/ProcessLogger.py	Tue May 30 13:00:50 2023 +0200
+++ b/util/ProcessLogger.py	Wed May 31 10:38:03 2023 +0200
@@ -91,7 +91,7 @@
                 else:
                     self.Command.append(word)
         else:
-            self.Command = Command
+            self.Command = [x if type(x)==str else x.decode() for x in Command]
             self.Command_str = subprocess.list2cmdline(self.Command)
 
         fsencoding = sys.getfilesystemencoding()