From d6b6ded8bd51a19b8b87287e43b83d0bfd4f4836 Mon Sep 17 00:00:00 2001 From: hroff-1902 Date: Sun, 20 Oct 2019 22:28:54 +0300 Subject: [PATCH] Print empty line separator in case of human-readable formats (list and tabular) --- freqtrade/utils.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/freqtrade/utils.py b/freqtrade/utils.py index 29b5c92f4..1f7650420 100644 --- a/freqtrade/utils.py +++ b/freqtrade/utils.py @@ -179,7 +179,13 @@ def start_list_markets(args: Dict[str, Any], pairs_only: bool = False) -> None: if (args.get('print_one_column', False) or args.get('list_pairs_print_json', False) or args.get('print_csv', False)): + # Print summary string in the log in case of machine-readable + # regular formats. logger.info(f"{summary_str}.") + else: + # Print empty string separating leading logs and output in case of + # human-readable formats. + print() if len(pairs): if args.get('print_list', False):