diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-04-02 11:01:06 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-04-02 12:33:34 +0200 |
commit | d256f08c6a7279489440d081e31355f99bee88ae (patch) | |
tree | 1b208722291ee48cb5c8ad135c6035e37d554054 /bin | |
parent | 8ac24de12f9ff6727fa0cc77e4ae180d7dc32a0b (diff) |
convwatch.py: decode bytes before printing
Change-Id: Ic1b115583415ab9bd2bdb18fa55f61803efc8442
Diffstat (limited to 'bin')
-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): |