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:
Tom Wassenberg 2018-06-01 19:48:23 +02:00 committed by Sloane Hertel
parent d4930e6692
commit 6097776dc0

View file

@ -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: