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`.
pull/41026/head
Tom Wassenberg 7 years ago committed by Sloane Hertel
parent d4930e6692
commit 6097776dc0

@ -496,7 +496,7 @@ class ClientScriptVaultSecret(ScriptVaultSecret):
encoding=encoding, encoding=encoding,
loader=loader) loader=loader)
self._vault_id = vault_id 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): def _run(self, command):
try: try:

Loading…
Cancel
Save