diff options
| author | 2019-11-15 13:39:24 +0000 | |
|---|---|---|
| committer | 2019-11-15 13:39:24 +0000 | |
| commit | bfcf40edd71c5bdd436ab8b535c880fad8781f16 (patch) | |
| tree | f26b390a444203f03a03be84b475cb83bf907bb0 /modules | |
| parent | only try to shlex when we know we've found a command hook (diff) | |
| signature | ||
split some stuff out of utils/__init__.py
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 413714d2..dc2a240a 100644 --- a/modules/coins.py +++ b/modules/coins.py @@ -97,7 +97,7 @@ class Module(ModuleManager.BaseModule): return "{0:,.2f}".format(coins) def _parse_coins(self, s, minimum=None): try: - s = utils.parse_number(s) + s = utils.parse.parse_number(s) except ValueError: pass |
