When become_method is su, self._play_context.prompt is a function. Fixes #23689
This commit is contained in:
parent
bf1a543f06
commit
f82d95ae28
1 changed files with 2 additions and 0 deletions
|
@ -258,6 +258,8 @@ class ConnectionBase(with_metaclass(ABCMeta, object)):
|
|||
if not b_lines:
|
||||
return False
|
||||
return b_lines[-1].strip().endswith(b_prompt) or b_lines[0].strip().endswith(b_prompt)
|
||||
else:
|
||||
return self._play_context.prompt(b_output)
|
||||
|
||||
def check_incorrect_password(self, b_output):
|
||||
b_incorrect_password = to_bytes(gettext.dgettext(self._play_context.become_method, C.BECOME_ERROR_STRINGS[self._play_context.become_method]))
|
||||
|
|
Loading…
Reference in a new issue