Commit 7bb2a7aa by Brian Coca

actually no password to handle, this should return false

parent 87a0ccc3
...@@ -131,7 +131,7 @@ class ConnectionBase(with_metaclass(ABCMeta, object)): ...@@ -131,7 +131,7 @@ class ConnectionBase(with_metaclass(ABCMeta, object)):
def check_password_prompt(self, output): def check_password_prompt(self, output):
if self.prompt is None: if self.prompt is None:
return True return False
elif isinstance(self.prompt, basestring): elif isinstance(self.prompt, basestring):
return output.endswith(self.prompt) return output.endswith(self.prompt)
else: else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment