diff options
Diffstat (limited to 'python/collateral')
| -rw-r--r-- | python/collateral/baml_isda.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/collateral/baml_isda.py b/python/collateral/baml_isda.py index ba42ec81..c5918a88 100644 --- a/python/collateral/baml_isda.py +++ b/python/collateral/baml_isda.py @@ -113,7 +113,7 @@ def collateral(d, dawn_trades, *args): try: fname = next(REPORTS_DIR.glob(f"Collat_*{d:%m%d%Y}_*.xls")) except StopIteration: - raise ValueError("no data for date {d}") + raise ValueError(f"no data for date {d}") df = pd.read_excel(fname, skiprows=6, skipfooter=6) df = df.drop(0, axis=0) try: |
