Fix 'CyberarkPassword' object has no attribute 'delimiter' (#66268)
This is a very small follow up to PR #59500
This commit is contained in:
parent
d1c39b9068
commit
53e405dd42
2 changed files with 3 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- cyberarkpassword - fix invalid attribute access (https://github.com/ansible/ansible/issues/66268)
|
|
@ -121,7 +121,7 @@ class CyberarkPassword:
|
|||
'-p', 'AppDescs.AppID=%s' % self.appid,
|
||||
'-p', 'Query=%s' % self.query,
|
||||
'-o', self.output,
|
||||
'-d', self.delimiter]
|
||||
'-d', self.b_delimiter]
|
||||
all_parms.extend(self.extra_parms)
|
||||
|
||||
b_credential = b""
|
||||
|
|
Loading…
Reference in a new issue