diff -r 56f08ab3a491 -r 032bf4f225d0 util/ProcessLogger.py --- 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()