Reword help string

This commit is contained in:
Matthias 2019-10-15 12:26:06 +02:00
parent a5c83b66df
commit 6fb96183c0
2 changed files with 3 additions and 3 deletions

View File

@ -44,8 +44,8 @@ optional arguments:
deployments (default: `sqlite:///tradesv3.sqlite` for deployments (default: `sqlite:///tradesv3.sqlite` for
Live Run mode, `sqlite://` for Dry Run). Live Run mode, `sqlite://` for Dry Run).
--sd-notify Notify systemd service manager. --sd-notify Notify systemd service manager.
--dry-run Enforce dry-run for trading, removes API keys and --dry-run Enforce dry-run for trading (removes Exchange secrets
simulates trades. and simulates trades).
Common arguments: Common arguments:
-v, --verbose Verbose mode (-vv for more, -vvv to get all messages). -v, --verbose Verbose mode (-vv for more, -vvv to get all messages).

View File

@ -88,7 +88,7 @@ AVAILABLE_CLI_OPTIONS = {
), ),
"dry_run": Arg( "dry_run": Arg(
'--dry-run', '--dry-run',
help='Enforce dry-run for trading, removes API keys and simulates trades.', help='Enforce dry-run for trading (removes Exchange secrets and simulates trades).',
action='store_true', action='store_true',
), ),
# Optimize common # Optimize common