Fix bug causing /balance to fail

This commit is contained in:
Matthias
2018-08-08 21:55:48 +02:00
parent 3c451e0677
commit e1921c8849
3 changed files with 15 additions and 34 deletions

View File

@@ -322,7 +322,7 @@ class Exchange(object):
return data
except (ccxt.NetworkError, ccxt.ExchangeError) as e:
raise TemporaryError(
f'Could not load ticker history due to {e.__class__.__name__}. Message: {e}')
f'Could not load ticker due to {e.__class__.__name__}. Message: {e}')
except ccxt.BaseError as e:
raise OperationalException(e)
else: