From bb14d028844673303c297c61ae16614c34036256 Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Mon, 18 Dec 2023 09:17:12 +0100 Subject: [PATCH] bug fix in frappy.io.BytesIO.checkHWIdent missing f for f string Change-Id: Ie67384e5b7e514728041a72bd08c850abb31639e Reviewed-on: https://forge.frm2.tum.de/review/c/secop/frappy/+/32786 Tested-by: Jenkins Automated Tests Reviewed-by: Alexander Zaft --- frappy/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappy/io.py b/frappy/io.py index 9156635..5f2261e 100644 --- a/frappy/io.py +++ b/frappy/io.py @@ -456,7 +456,7 @@ class BytesIO(IOBase): if not replypat.match(reply): self.closeConnection() raise CommunicationFailedError(f'bad response: {reply!r}' - ' does not match {expected!r}') + f' does not match {expected!r}') @Command((BLOBType(), IntRange(0)), result=BLOBType()) def communicate(self, request, replylen): # pylint: disable=arguments-differ