mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
paramiko_ssh: fix crash upon pass prompt in py3
The pass prompt expects an answer and compares a `str` to a binary buffer, thus crashing. It's an obvious fix to help transitioning towards Python3 and hopes it does not need a specific test.
This commit is contained in:
parent
b52dbddc17
commit
bc44175d8d
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ class Connection(ConnectionBase):
|
|||
chunk = chan.recv(bufsize)
|
||||
display.debug("chunk is: %s" % chunk)
|
||||
if not chunk:
|
||||
if 'unknown user' in become_output:
|
||||
if b'unknown user' in become_output:
|
||||
raise AnsibleError( 'user %s does not exist' % self._play_context.become_user)
|
||||
else:
|
||||
break
|
||||
|
|
Loading…
Reference in a new issue