summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith@newrelic.com>2014-12-24 15:13:42 -0800
committerAmjith Ramanujam <amjith@newrelic.com>2014-12-24 15:13:42 -0800
commit389777e89c0b006049e40a8484d94b15939b9adf (patch)
treec4f755d997da75df279767ae3bcb462f5ae61dbc
parent88bdecafb2814e7827f00f6e21296de5a6745050 (diff)
Add a doc string to --password option.
-rwxr-xr-xpgcli/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcli/main.py b/pgcli/main.py
index 8d06ac10..5dab1403 100755
--- a/pgcli/main.py
+++ b/pgcli/main.py
@@ -32,7 +32,7 @@ from .key_bindings import pgcli_bindings
'postgres instance is listening.')
@click.option('-U', '--user', prompt=True, envvar='USER', help='User name to '
'connect to the postgres database.')
-@click.option('-W', '--password', is_flag=True)
+@click.option('-W', '--password', is_flag=True, help='Force password prompt.')
@click.argument('database', envvar='USER')
def cli(database, user, password, host, port):