Skip to content

Commit 1c1dba5

Browse files
committed
[GUI] Fix HW status message log entry
fixes a debug log message that wasn't using the proper f-string
1 parent bb2db92 commit 1c1dba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mainWindow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def updateHWstatus(self, ctrl):
422422
printDbg(str(e))
423423
pass
424424

425-
printDbg("status:{self.hwStatus} - mess: {self.hwStatusMess}")
425+
printDbg(f"status:{self.hwStatus} - mess: {self.hwStatusMess}")
426426

427427
def updateLastBlockLabel(self):
428428
text = '--'

0 commit comments

Comments
 (0)