Dumper: fix exception string

'...' % ... has 3 placeholder(s) but 2 substitution(s)

Change-Id: I8d0ac49a97d8ff1745240276fa4ef02f73991dbe
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
David Schulz
2024-06-18 13:01:02 +02:00
parent b240bfb3db
commit c5caee8be2

View File

@@ -4202,7 +4202,7 @@ typename))
res = self.readRawMemory(address, size)
if len(res) > 0:
return res
raise RuntimeError('CANNOT READ %d BYTES FROM ADDRESS: %s %s' % (size, address))
raise RuntimeError('CANNOT READ %d BYTES FROM ADDRESS: %s' % (size, address))
def value_display(self, value):
type_code = self.type_code(value.typeid)