This commit is contained in:
Kovid Goyal
2022-03-07 06:58:14 +05:30
parent 6e4d3c98da
commit 6ff69c88df

View File

@@ -430,7 +430,7 @@ def main(args: List[str]) -> NoReturn:
import subprocess
with suppress(FileNotFoundError):
raise SystemExit(subprocess.run(cmd).returncode)
raise SystemExit('Could not find the ssh executable, is it in your PATH')
raise SystemExit('Could not find the ssh executable, is it in your PATH?')
if __name__ == '__main__':