Skip to content

Commit

Permalink
BluezAgent: missing whitespace around arithmetic operator
Browse files Browse the repository at this point in the history
  • Loading branch information
infirit committed Aug 4, 2023
1 parent b85691a commit 8c7fbea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blueman/main/applet/BluezAgent.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def _on_display_passkey(self, device: str, passkey: int, entered: int) -> None:

key = f"{passkey:06}"
notify_message = _("Pairing passkey for") + f" {self.get_device_string(device)}: " \
f"{key[:entered]}<b>{key[entered]}</b>{key[entered+1:]}"
f"{key[:entered]}<b>{key[entered]}</b>{key[entered + 1:]}"
self._close()
self._notification = Notification("Bluetooth", notify_message, 0, icon_name="blueman")
self._notification.show()
Expand Down

0 comments on commit 8c7fbea

Please sign in to comment.