Skip to content

Commit

Permalink
fix stupid unbound variable bug
Browse files Browse the repository at this point in the history
see #64
  • Loading branch information
zocker-160 committed Jun 11, 2024
1 parent 7d744ed commit bcacf03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mainUi.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def initBackgroundService(self):

except NoKeyboardException:
pass
except NoEndpointException:
except NoEndpointException as e:
self.showErrorMSG(
"Failed to load keyboard endpoint!",
detailText=str(e),
Expand Down

0 comments on commit bcacf03

Please sign in to comment.