If the error is an authentication exception - just report it that way don't dump out an unappetizing traceback which just says the same

pull/3/head
Seth Vidal 12 years ago
parent 5781e6e02f
commit 1a20b00d1f

@ -108,6 +108,8 @@ class Runner(object):
ssh.connect(host, username=self.remote_user, allow_agent=True,
look_for_keys=True, password=self.remote_pass)
return [ True, ssh ]
except paramiko.AuthenticationException, e:
return [ False, str(e) ]
except:
# it failed somehow, return the failure string
return [ False, traceback.format_exc() ]

Loading…
Cancel
Save