Skip to content

Commit

Permalink
Merge pull request #61 from linux-automation/cfi/fix-tyo
Browse files Browse the repository at this point in the history
main: Fix Typo: It is ``a USB-SD-Mux``
  • Loading branch information
jluebbe authored Dec 19, 2023
2 parents 7c09767 + 294ef1e commit 857b3c1
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 857b3c1

Please sign in to comment.