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

This is a very small follow up to PR #59500
This commit is contained in:
Marc Hörsken 2020-01-08 21:36:41 +01:00 committed by Sam Doran
parent d1c39b9068
commit 53e405dd42
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- cyberarkpassword - fix invalid attribute access (https://github.com/ansible/ansible/issues/66268)

View file

@ -121,7 +121,7 @@ class CyberarkPassword:
'-p', 'AppDescs.AppID=%s' % self.appid, '-p', 'AppDescs.AppID=%s' % self.appid,
'-p', 'Query=%s' % self.query, '-p', 'Query=%s' % self.query,
'-o', self.output, '-o', self.output,
'-d', self.delimiter] '-d', self.b_delimiter]
all_parms.extend(self.extra_parms) all_parms.extend(self.extra_parms)
b_credential = b"" b_credential = b""