Skip to content

Commit

Permalink
[GUI] Fix HW status message log entry
Browse files Browse the repository at this point in the history
fixes a debug log message that wasn't using the proper f-string
  • Loading branch information
Fuzzbawls committed May 28, 2024
1 parent bb2db92 commit 1c1dba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mainWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def updateHWstatus(self, ctrl):
printDbg(str(e))
pass

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

def updateLastBlockLabel(self):
text = '--'
Expand Down

0 comments on commit 1c1dba5

Please sign in to comment.