Skip to content

Commit

Permalink
main: Fix Typo: It is 'a USB-SD-Mux'
Browse files Browse the repository at this point in the history
This fixes the typo mentioned in #59:
#59

Closes #59

Signed-off-by: Chris Fiege <[email protected]>
  • Loading branch information
SmithChart committed Dec 18, 2023
1 parent 7c09767 commit 294ef1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usbsdmux/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def main():
try:
ctl = autoselect_driver(args.sg)
except UnknownUsbSdMuxRevisionException as e:
error_msg = str(e) + "\n" + f"Does {args.sg} really point to an USB-SD-Mux?"
error_msg = str(e) + "\n" + f"Does {args.sg} really point to a USB-SD-Mux?"
if args.json:
print(json.dumps({"error-message": error_msg}))
else:
Expand Down Expand Up @@ -134,7 +134,7 @@ def main():
except OSError as ose:
if ose.errno == errno.ENOTTY:
# ENOTTY is raised when an error occurred when calling an ioctl
error_msg = ose + "\n" + f"Does '{args.sg}' really point to an USB-SD-Mux?"
error_msg = ose + "\n" + f"Does '{args.sg}' really point to a USB-SD-Mux?"
else:
raise ose
except NotInHostModeException:
Expand Down

0 comments on commit 294ef1e

Please sign in to comment.