Merge pull request #13402 from amenonsen/expandpath
Use CLI.expand_tilde also for the vault --output file
This commit is contained in:
commit
7708661270
1 changed files with 2 additions and 1 deletions
|
@ -250,7 +250,8 @@ class CLI(object):
|
|||
parser.add_option('--new-vault-password-file', dest='new_vault_password_file',
|
||||
help="new vault password file for rekey", action="callback", callback=CLI.expand_tilde, type=str)
|
||||
parser.add_option('--output', default=None, dest='output_file',
|
||||
help='output file name for encrypt or decrypt; use - for stdout')
|
||||
help='output file name for encrypt or decrypt; use - for stdout',
|
||||
action="callback", callback=CLI.expand_tilde, type=str)
|
||||
|
||||
if subset_opts:
|
||||
parser.add_option('-t', '--tags', dest='tags', default='all',
|
||||
|
|
Loading…
Reference in a new issue