Fixes variable usage in bigip device trust (#40975)

Variable used was incorrectly named
pull/40985/head
Tim Rupp 6 years ago committed by GitHub
parent bcabbe33c8
commit 0cecc08886
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -232,7 +232,7 @@ class ModuleManager(object):
if self.want.password:
return self.password
if self.want.provider.get('password', None):
return self.provider.get('password')
return self.want.provider.get('password')
if self.module.params.get('password', None):
return self.module.params.get('password')

Loading…
Cancel
Save