Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrbartman committed Oct 17, 2024
1 parent 21cf824 commit 2d26fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubesusbproxy/core3ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ async def on_device_attach_usb(self, vm, event, device, options):
sanitized_stderr = ''.join(
[chr(c) for c in sanitized_stderr if 0x20 <= c < 0x80])
if sanitized_stderr.endswith(", "):
sanitized_stderr = santizied_stderr[:-2] + "."
sanitized_stderr = sanitized_stderr[:-2] + "."
raise QubesUSBException(
'Device attach failed: {}'.format(sanitized_stderr))
finally:
Expand Down

0 comments on commit 2d26fe8

Please sign in to comment.