aboutsummaryrefslogtreecommitdiffstats
path: root/python/monthend_interest_recon.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/monthend_interest_recon.py')
-rw-r--r--python/monthend_interest_recon.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/monthend_interest_recon.py b/python/monthend_interest_recon.py
index 066b5f59..d796fb96 100644
--- a/python/monthend_interest_recon.py
+++ b/python/monthend_interest_recon.py
@@ -104,7 +104,9 @@ def get_MS(path):
def get_BAML(g):
for e in g:
if "Net interest Amount" in e.text:
- return -float(next(g).text.replace("(", "-").replace(")", ""))
+ return -float(
+ next(g).text.replace("(", "-").replace(")", "").replace(",", "")
+ )
def get_JPM(g):