From b4cc1fa4703a99b060b1fd06dc6e3383785f310d Mon Sep 17 00:00:00 2001 From: Janne Sinivirta Date: Sun, 17 Dec 2017 21:45:23 +0200 Subject: [PATCH] two more line breakings --- freqtrade/misc.py | 4 ++-- freqtrade/optimize/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/freqtrade/misc.py b/freqtrade/misc.py index 1dcd33842..b01fd9fe9 100644 --- a/freqtrade/misc.py +++ b/freqtrade/misc.py @@ -168,8 +168,8 @@ def build_subcommands(parser: argparse.ArgumentParser) -> None: ) backtesting_cmd.add_argument( '-r', '--refresh-pairs-cached', - help='refresh the pairs files in tests/testdata with the latest data from Bittrex. Use it if you want to \ - run your backtesting with up-to-date data.', + help='refresh the pairs files in tests/testdata with the latest data from Bittrex. \ + Use it if you want to run your backtesting with up-to-date data.', action='store_true', dest='refresh_pairs', ) diff --git a/freqtrade/optimize/__init__.py b/freqtrade/optimize/__init__.py index 28abe11a3..12425cda2 100644 --- a/freqtrade/optimize/__init__.py +++ b/freqtrade/optimize/__init__.py @@ -65,7 +65,7 @@ def download_pairs(pairs: List[str]) -> bool: for interval in [1, 5]: download_backtesting_testdata(pair=pair, interval=interval) except BaseException: - logger.info('Impossible to download the pair: "{pair}", Interval: {interval} min'.format( + logger.info('Failed to download the pair: "{pair}", Interval: {interval} min'.format( pair=pair, interval=interval, ))