diff options
-rw-r--r-- | bin/convwatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/convwatch.py b/bin/convwatch.py index 283e67e52581..c60c0fad5b98 100644 --- a/bin/convwatch.py +++ b/bin/convwatch.py @@ -327,7 +327,7 @@ def identify(imagefile): if process.wait() != 0: raise Exception("identify failed") if result.partition(b"\n")[0] != b"1": - print("identify result: " + result) + print("identify result: " + result.decode('utf-8')) print("DIFFERENCE in " + imagefile) def compose(refimagefile, imagefile, diffimagefile): |