diff options
Diffstat (limited to 'python/collateral')
| -rw-r--r-- | python/collateral/ms.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/collateral/ms.py b/python/collateral/ms.py index 785c12de..dba13c67 100644 --- a/python/collateral/ms.py +++ b/python/collateral/ms.py @@ -36,6 +36,8 @@ def download_files(em, count=20, *, fund="Serenitas", **kwargs): fname = "Trade_Detail_FX_" + attach.name.split("_")[1] elif "NET_Collateral" in attach.name: fname = "Collateral_Detail_" + attach.name.rsplit("_", 1)[1] + elif "IMR_Collateral" in attach.name: + fname = "Collateral_Detail_IMR_" + attach.name.rsplit("_", 1)[1] elif "Statement" in attach.name and attach.name.endswith("pdf"): ending = attach.name.rsplit("_", 1)[1] fname = "Statement_" + ending.split(".")[0] + ".pdf" |
