From e3c282a47a896b3e61a4481f56d6ad3bd2f8defd Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Fri, 4 Jul 2014 01:41:50 +0200 Subject: [PATCH] sandmanctl: update help for --host and --port current text suggests you can set the host/port of the database that sandman is connecting to here, but in fact, it's the host/port of sandman itself. --- sandman/sandmanctl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sandman/sandmanctl.py b/sandman/sandmanctl.py index cb729ea..cf66729 100644 --- a/sandman/sandmanctl.py +++ b/sandman/sandmanctl.py @@ -26,9 +26,9 @@ def print_version(ctx, value): @click.option('--show-pks/--no-show-pks', default=False, help='Have sandman show primary key columns in the admin view') @click.option('--host', default='0.0.0.0', - help='Hostname of database server to connect to') + help='Hostname sandman should bind to') @click.option('--port', default=8080, - help='Port of database server to connect to') + help='Port sandman should bind to') @click.option('--version', is_flag=True, callback=print_version, expose_value=False, is_eager=True) @click.argument('URI', metavar='')