mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix typo
This commit is contained in:
parent
b58d7470d4
commit
b49e0995cb
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ class LookupModule(LookupBase):
|
||||||
salt_field = content[sep + 1:]
|
salt_field = content[sep + 1:]
|
||||||
if salt_field.startswith('salt='):
|
if salt_field.startswith('salt='):
|
||||||
password = content[:sep]
|
password = content[:sep]
|
||||||
salt = salt_field[len('salt=':]
|
salt = salt_field[len('salt='):]
|
||||||
else:
|
else:
|
||||||
password = content
|
password = content
|
||||||
salt = None
|
salt = None
|
||||||
|
|
Loading…
Reference in a new issue