Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
tsterbak committed Feb 7, 2024
1 parent 4e3c70b commit 67ea0f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openandroidinstaller/tooling.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,10 +600,10 @@ def search_device(platform: str, bin_path: Path) -> SearchResult:
grep_command = check_output(["which", "grep"]).decode().strip()
except CalledProcessError:
logger.error(
"Failed to detect a device. Please make sure `grep` it is installed."
"Failed to detect a device. Please make sure `grep` is installed."
)
return SearchResult(
msg="Failed to detect a device. Please make sure `grep` it is installed."
msg="Failed to detect a device. Please make sure `grep` is installed."
)
# run the command to get the device code
output = check_output(
Expand Down

0 comments on commit 67ea0f1

Please sign in to comment.