Fix flag in debug message (#40753)
The debug message stated that the vault password client script was invoked as `example.py --vault-id=example`, while it's actually `example.py --vault-id example`.
This commit is contained in:
parent
d4930e6692
commit
6097776dc0
1 changed files with 1 additions and 1 deletions
|
@ -496,7 +496,7 @@ class ClientScriptVaultSecret(ScriptVaultSecret):
|
|||
encoding=encoding,
|
||||
loader=loader)
|
||||
self._vault_id = vault_id
|
||||
display.vvvv('Executing vault password client script: %s --vault-id=%s' % (filename, vault_id))
|
||||
display.vvvv('Executing vault password client script: %s --vault-id %s' % (filename, vault_id))
|
||||
|
||||
def _run(self, command):
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue