Typo in modules/coins.py; 'utils._parse_coins' -> 'self._parse_coins'
This commit is contained in:
parent
547c57c8b8
commit
b467220400
1 changed files with 1 additions and 1 deletions
|
@ -341,7 +341,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
|
|
||||||
for i, bet_amount in enumerate(bet_amounts):
|
for i, bet_amount in enumerate(bet_amounts):
|
||||||
try:
|
try:
|
||||||
bet_amount = utils._parse_coins(bet_amount, DECIMAL_ZERO)
|
bet_amount = self._parse_coins(bet_amount, DECIMAL_ZERO)
|
||||||
except CoinParseException as e:
|
except CoinParseException as e:
|
||||||
raise utils.EventError("%s: %s" % (event["user"].nickname,
|
raise utils.EventError("%s: %s" % (event["user"].nickname,
|
||||||
str(e)))
|
str(e)))
|
||||||
|
|
Loading…
Reference in a new issue