Skip to content

Commit 67ea0f1

Browse files
committed
Fix error message
1 parent 4e3c70b commit 67ea0f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openandroidinstaller/tooling.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,10 +600,10 @@ def search_device(platform: str, bin_path: Path) -> SearchResult:
600600
grep_command = check_output(["which", "grep"]).decode().strip()
601601
except CalledProcessError:
602602
logger.error(
603-
"Failed to detect a device. Please make sure `grep` it is installed."
603+
"Failed to detect a device. Please make sure `grep` is installed."
604604
)
605605
return SearchResult(
606-
msg="Failed to detect a device. Please make sure `grep` it is installed."
606+
msg="Failed to detect a device. Please make sure `grep` is installed."
607607
)
608608
# run the command to get the device code
609609
output = check_output(

0 commit comments

Comments
 (0)