remove error message to make pytest pass

This commit is contained in:
iuvbio 2019-02-17 15:29:58 +01:00
parent 5e8a7a03c3
commit 39c28626aa

View File

@ -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, Msg: %s',
pair, tick_interval, e)
except BaseException:
logger.info('Failed to download the pair: "%s", Interval: %s',
pair, tick_interval)
return False