aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-19 11:15:41 +0100
committerGravatar jesopo2018-10-19 11:15:41 +0100
commit472c4fb1f3c889111a8577af654c4b713cb9b3d5 (patch)
tree2d1055a5b53badeeed69770928071fc818a5b4b6 /modules
parentAdd another missing ")" in modules/coins.py (diff)
signature
Typo in modules/coins.py, "len(list > 2)" -> "len(list) > 2"
Diffstat (limited to 'modules')
-rw-r--r--modules/coins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/coins.py b/modules/coins.py
index 603f934a..6da50fa4 100644
--- a/modules/coins.py
+++ b/modules/coins.py
@@ -319,7 +319,7 @@ class Module(ModuleManager.BaseModule):
:usage: heads|tails <coin amount>
"""
wallet_in, wallet_out = self._default_wallets(event["user"])
- if len(event["args_split"] > 2):
+ if len(event["args_split"]) > 2:
wallet_in, wallet_out = self._parse_wallets(event["user"],
event["args_split"][2])