Commit f45b2f15 authored by Vincent Pelletier's avatar Vincent Pelletier

cli: Fix metavar for --get-crt .

parent 855de2c2
...@@ -366,10 +366,10 @@ def main(argv=None): ...@@ -366,10 +366,10 @@ def main(argv=None):
nargs=2, nargs=2,
action='append', action='append',
default=[], default=[],
metavar=('CSR_ID', 'CRL_PATH'), metavar=('CSR_ID', 'CRT_PATH'),
help='Retrieve the certificate identified by ' help='Retrieve the certificate identified by '
'identifier and store it at given path. ' 'identifier and store it at given path. '
'If CSR_PATH exists and contains the private key corresponding to ' 'If CRT_PATH exists and contains the private key corresponding to '
'received certificate, certificate will be appended to that file. ' 'received certificate, certificate will be appended to that file. '
'Can be given multiple times.', 'Can be given multiple times.',
) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment