This commit is contained in:
Flummi 2017-09-29 11:34:16 +00:00
parent 1aed3bb746
commit e8a2b32f41

View File

@ -42,7 +42,7 @@ class Coins(Plugin):
return self.cryptowat_summary('xmr', 'bitfinex', args) return self.cryptowat_summary('xmr', 'bitfinex', args)
def cryptowat_summary(self, crypto: str, market: str, args: Dict): def cryptowat_summary(self, crypto: str, market: str, args: Dict):
currency = args.get('<currency>', 'usd') currency = args.get('<currency>', 'usd').lower()
if currency not in self.CURRENCIES or crypto == currency: if currency not in self.CURRENCIES or crypto == currency:
return '\x02[{}]\x02 Can\'t convert or invalid currency: {}'.format(crypto.upper(), currency) return '\x02[{}]\x02 Can\'t convert or invalid currency: {}'.format(crypto.upper(), currency)