From 0f97a999fb7f49bb6de05fa4ba6c4a733cc45cc1 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 24 Sep 2019 06:35:41 +0200 Subject: [PATCH] Improve wording --- freqtrade/configuration/check_exchange.py | 4 ++-- freqtrade/utils.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/freqtrade/configuration/check_exchange.py b/freqtrade/configuration/check_exchange.py index 019081def..19c377732 100644 --- a/freqtrade/configuration/check_exchange.py +++ b/freqtrade/configuration/check_exchange.py @@ -29,8 +29,8 @@ def check_exchange(config: Dict[str, Any], check_for_bad: bool = True) -> bool: exchange = config.get('exchange', {}).get('name').lower() if not exchange: raise OperationalException( - f'This command requires a configured exchange. You can use either ' - f'`--exchange ` or specify a configuration file via `--config`.\n' f'The following exchanges are supported by ccxt: ' f'{", ".join(available_exchanges())}' ) diff --git a/freqtrade/utils.py b/freqtrade/utils.py index 276c7267b..6ce5e888c 100644 --- a/freqtrade/utils.py +++ b/freqtrade/utils.py @@ -73,7 +73,7 @@ def start_download_data(args: Dict[str, Any]) -> None: if 'pairs' not in config: raise OperationalException( - "Downloading data requires a list of pairs." + "Downloading data requires a list of pairs. " "Please check the documentation on how to configure this.") dl_path = Path(config['datadir'])