aboutsummaryrefslogtreecommitdiff
path: root/rumba/ssh_support.py
diff options
context:
space:
mode:
Diffstat (limited to 'rumba/ssh_support.py')
-rw-r--r--rumba/ssh_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rumba/ssh_support.py b/rumba/ssh_support.py
index d9be604..9aa312e 100644
--- a/rumba/ssh_support.py
+++ b/rumba/ssh_support.py
@@ -88,11 +88,11 @@ def ssh_connect(hostname, port, username, password, time_out, proxy_server):
logger.error('If you are sure this is not a man in the ' +
'middle attack, edit that file to remove the ' +
'entry and then hit return to try again.')
+ input()
except (paramiko.ssh_exception.SSHException, EOFError):
retry += 1
logger.error('Failed to connect to host, retrying: ' +
str(retry) + '/' + str(max_retries) + ' retries')
- input('Hit Enter when ready')
if retry == max_retries:
raise SSHException('Failed to connect to host')