##// END OF EJS Templates
fix check for passwordless OpenSSH (fixes #2266)...
Joseph Lansdowne -
Show More
@@ -97,7 +97,7 b' def _try_passwordless_openssh(server, keyfile):'
97 97 p = pexpect.spawn(cmd)
98 98 while True:
99 99 try:
100 p.expect('[Ppassword]:', timeout=.1)
100 p.expect('[Pp]assword:', timeout=.1)
101 101 except pexpect.TIMEOUT:
102 102 continue
103 103 except pexpect.EOF:
General Comments 0
You need to be logged in to leave comments. Login now