From e91448132574b358a8ba49cdac4bbc07676cd81c Mon Sep 17 00:00:00 2001 From: Frederic Fortier Date: Wed, 31 Jan 2018 17:19:09 -0500 Subject: [PATCH] BLD: minor adjustment --- catalyst/exchange/ccxt/ccxt_exchange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/exchange/ccxt/ccxt_exchange.py b/catalyst/exchange/ccxt/ccxt_exchange.py index 5edd86f2..1f050f7f 100644 --- a/catalyst/exchange/ccxt/ccxt_exchange.py +++ b/catalyst/exchange/ccxt/ccxt_exchange.py @@ -1008,7 +1008,7 @@ class CCXT(Exchange): results = dict() results[symbol] = self.api.fetch_ticker(symbol=symbol) - except (ExchangeError, NetworkError, Exception) as e: + except (ExchangeError, NetworkError,) as e: log.warn( 'unable to fetch ticker {} / {}: {}'.format( self.name, symbol, e