From 0572336ff790b39bc5d3719504590cc471b6251d Mon Sep 17 00:00:00 2001 From: iuvbio Date: Sun, 17 Feb 2019 16:12:40 +0100 Subject: [PATCH] revert changes to history --- freqtrade/data/history.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/freqtrade/data/history.py b/freqtrade/data/history.py index a7a3a61cf..7d89f7ad6 100644 --- a/freqtrade/data/history.py +++ b/freqtrade/data/history.py @@ -229,7 +229,7 @@ def download_pair_history(datadir: Optional[Path], misc.file_dump_json(filename, data) return True - except BaseException as e: - logger.info('Failed to download the pair: "%s", Interval: %s\n' - 'Error message: %s', pair, tick_interval, e) + except BaseException: + logger.info('Failed to download the pair: "%s", Interval: %s', + pair, tick_interval) return False