diff options
| author | 2018-10-19 11:35:25 +0100 | |
|---|---|---|
| committer | 2018-10-19 11:35:25 +0100 | |
| commit | 303640844df49639c2811bb496a561efaea2d001 (patch) | |
| tree | d9271ee65c83d9e4c40f6ad93a26dbb58595acea /modules | |
| parent | Protect against unknown wallets, show "new total" of output wallet when a coin (diff) | |
| signature | ||
Typo in modules/coins.py, 'DEFAUT' -> 'DEFAULT'
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/coins.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
