Fix 'CyberarkPassword' object has no attribute 'delimiter' (#66268)

This is a very small follow up to PR #59500
pull/56369/head
Marc Hörsken 5 years ago committed by Sam Doran
parent d1c39b9068
commit 53e405dd42

@ -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…
Cancel
Save