From: Eduardo Habkost Date: Wed, 16 Oct 2019 19:24:25 +0000 (-0300) Subject: image-fuzzer: Use %r for all fiels at Field.__repr__() X-Git-Tag: v4.2.0-rc0~10^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c439143b7f853b8ecd4baff64ac41cf754db18e6;p=thirdparty%2Fqemu.git image-fuzzer: Use %r for all fiels at Field.__repr__() This makes the formatting code simpler, and safer if we change the type of self.value from str to bytes. Signed-off-by: Eduardo Habkost Reviewed-by: John Snow Reviewed-by: Philippe Mathieu-Daudé Message-id: 20191016192430.25098-6-ehabkost@redhat.com Message-Id: <20191016192430.25098-6-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 6501c9fd4b1..0adcbd448d1 100644 --- a/tests/image-fuzzer/qcow2/layout.py +++ b/tests/image-fuzzer/qcow2/layout.py @@ -53,8 +53,8 @@ class Field(object): return iter([self.fmt, self.offset, self.value, self.name]) def __repr__(self): - return "Field(fmt='%s', offset=%d, value=%s, name=%s)" % \ - (self.fmt, self.offset, str(self.value), self.name) + return "Field(fmt=%r, offset=%r, value=%r, name=%r)" % \ + (self.fmt, self.offset, self.value, self.name) class FieldsList(object):