diff options
| author | 2018-10-19 11:38:23 +0100 | |
|---|---|---|
| committer | 2018-10-19 11:38:23 +0100 | |
| commit | b930f3c0cf87eb02132e055b8eefdbbb0066be56 (patch) | |
| tree | cca5ec6937d7b1d94c34d4fcee9500864b5e30a8 /modules | |
| parent | Typo in modules/coins.py, 'DEFAUT' -> 'DEFAULT' (diff) | |
| signature | ||
Dangerous typo in modules/coins.py - 'wallet' -> 'wallets'
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 18343703..b4aa692d 100644 --- a/modules/coins.py +++ b/modules/coins.py @@ -90,7 +90,7 @@ class Module(ModuleManager.BaseModule): def _remove_user_wallet(self, user, wallet): wallets = self._get_user_wallets(user) del wallets[wallet.lower()] - self._set_user_wallets(user, wallet) + self._set_user_wallets(user, wallets) def _all_coins(self, server): coins = server.get_all_user_settings("wallets", []) |
