diff options
| -rw-r--r-- | python/common.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/common.py b/python/common.py index 047a2d83..557189a4 100644 --- a/python/common.py +++ b/python/common.py @@ -8,6 +8,8 @@ elif os.name == 'posix': def sanitize_float(intex_float): try: intex_float = intex_float.replace(",", "") + if " " in intex_float: #case of combo notes + return float(intex_float.split(" ")[0]) if "(" in intex_float: return - float(intex_float[1:-1]) else: |
