This commit is contained in:
Kovid Goyal 2018-01-22 14:48:58 +05:30
parent 413361b24a
commit 41f45b0dc8
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -94,10 +94,11 @@ def get_parser(usage):
go.add_option(
'--password',
help=_('Password for connecting to a calibre Content server.'
' To read the password from standard input, use the special value: {}.'
' To read the password from a file, use: {}. The angle brackets in the'
' above are required, remember to escape them or use quotes for your shell.').format(
'<stdin>', '<f:/path/to/file>')
' To read the password from standard input, use the special value: {0}.'
' To read the password from a file, use: {1} (i.e. <f: followed by the full path to the file and a trailing >).'
' The angle brackets in the above are required, remember to escape them or use quotes'
' for your shell.').format(
'<stdin>', '<f:C:/path/to/file>' if iswindows else '<f:/path/to/file>')
)
return parser