# HG changeset patch # User Sebastien Jodogne # Date 1689263873 -7200 # Node ID e6cee85fe4215c5d68c89376d547d70a14cd77a3 # Parent 9d41b7f18be85c12b97d4090df4cb3530a733e59 fix diff -r 9d41b7f18be8 -r e6cee85fe421 Plugins/WSI/Run.py --- a/Plugins/WSI/Run.py Thu Jul 13 16:51:42 2023 +0200 +++ b/Plugins/WSI/Run.py Thu Jul 13 17:57:53 2023 +0200 @@ -100,7 +100,10 @@ log = subprocess.check_output(prefix + command, stderr=subprocess.STDOUT) - + + if sys.version_info >= (3, 0): + log = log.decode('ascii') + # If using valgrind, only print the lines from the log starting # with '==' (they contain the report from valgrind) if args.valgrind: