From 67c5d15f51fc3944bfb51c96b073d6db5a49a7db Mon Sep 17 00:00:00 2001 From: Job Evers Date: Thu, 28 Jul 2016 11:46:33 -0500 Subject: [PATCH] stupid typo --- lbrynet/lbrynet_daemon/LBRYExchangeRateManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/lbrynet_daemon/LBRYExchangeRateManager.py b/lbrynet/lbrynet_daemon/LBRYExchangeRateManager.py index b578a2983..ca7cfdbc4 100644 --- a/lbrynet/lbrynet_daemon/LBRYExchangeRateManager.py +++ b/lbrynet/lbrynet_daemon/LBRYExchangeRateManager.py @@ -139,7 +139,7 @@ class ExchangeRateManager(object): for market in self.market_feeds: if market.rate.currency_pair[0] == from_currency: return self.convert_currency(market.rate.currency_pair[1], to_currency, amount * market.rate.spot) - raise Exception('Unable to convert {} from {} to {}'.format(amount, from_current, to_currency)) + raise Exception('Unable to convert {} from {} to {}'.format(amount, from_currency, to_currency)) def fee_dict(self): return {market: market.rate.as_dict() for market in self.market_feeds}