From 303640844df49639c2811bb496a561efaea2d001 Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 19 Oct 2018 11:35:25 +0100 Subject: [PATCH] Typo in modules/coins.py, 'DEFAUT' -> 'DEFAULT' --- modules/coins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/coins.py b/modules/coins.py index 635272df..18343703 100644 --- a/modules/coins.py +++ b/modules/coins.py @@ -153,7 +153,7 @@ class Module(ModuleManager.BaseModule): if not ":" in s: return s, s wallet_1, _, wallet_2 = s.partition(":") - wallet_1 = wallet_1.lower() or WALLET_DEFAUT + wallet_1 = wallet_1.lower() or WALLET_DEFAULT wallet_2 = wallet_2.lower() or WALLET_DEFAULT wallets = self._get_user_wallets(user)