From 41f45b0dc8767d738cfc60665ae533d30a472377 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 22 Jan 2018 14:48:58 +0530 Subject: [PATCH] ... --- src/calibre/db/cli/main.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/calibre/db/cli/main.py b/src/calibre/db/cli/main.py index be7fb79961..1a957e0820 100644 --- a/src/calibre/db/cli/main.py +++ b/src/calibre/db/cli/main.py @@ -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( - '', '') + ' To read the password from standard input, use the special value: {0}.' + ' To read the password from a file, use: {1} (i.e. ).' + ' The angle brackets in the above are required, remember to escape them or use quotes' + ' for your shell.').format( + '', '' if iswindows else '') ) return parser