aboutsummaryrefslogtreecommitdiffstats
path: root/python/collateral
diff options
context:
space:
mode:
Diffstat (limited to 'python/collateral')
-rw-r--r--python/collateral/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/collateral/common.py b/python/collateral/common.py
index 56d2f9ec..a41e68b8 100644
--- a/python/collateral/common.py
+++ b/python/collateral/common.py
@@ -51,7 +51,7 @@ def compare_notionals(df: pd.DataFrame, positions: pd.DataFrame, fcm: str) -> No
logger.error(f"Database and {fcm} FCM know different notionals")
for t in diff_notionals.itertuples():
logger.error(
- f"{t.Index[0]}\t{t.Index[1].date()}\t{t.notional}\t{t.NOTIONAL}"
+ f"{t.Index[0]}\t{t.Index[1]:%Y-%m-%d}\t{t.notional}\t{t.NOTIONAL}"
)