From: Eduardo Habkost Date: Wed, 16 Oct 2019 19:24:22 +0000 (-0300) Subject: image-fuzzer: Write bytes instead of string to image file X-Git-Tag: v4.2.0-rc0~10^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c314e50b8ace8a66b732f3541d58b2592d4427a9;p=thirdparty%2Fqemu.git image-fuzzer: Write bytes instead of string to image file This is necessary for Python 3 compatibility. Signed-off-by: Eduardo Habkost Reviewed-by: John Snow Reviewed-by: Philippe Mathieu-Daudé Message-id: 20191016192430.25098-3-ehabkost@redhat.com Message-Id: <20191016192430.25098-3-ehabkost@redhat.com> Signed-off-by: Stefan Hajnoczi --- diff --git a/tests/image-fuzzer/qcow2/layout.py b/tests/image-fuzzer/qcow2/layout.py index c57418fa15f..fe273d41432 100644 --- a/tests/image-fuzzer/qcow2/layout.py +++ b/tests/image-fuzzer/qcow2/layout.py @@ -518,7 +518,7 @@ class Image(object): rounded = (size + self.cluster_size - 1) & ~(self.cluster_size - 1) if rounded > size: image_file.seek(rounded - 1) - image_file.write("\0") + image_file.write(b'\x00') image_file.close() @staticmethod