aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/bbg_cds_quotes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/bbg_cds_quotes.py b/python/bbg_cds_quotes.py
index 5ca3bd85..308ddc8e 100644
--- a/python/bbg_cds_quotes.py
+++ b/python/bbg_cds_quotes.py
@@ -36,7 +36,7 @@ def build_tuple(k, v, workdate, source):
v.get('UPFRONT_RUNNING_SPREAD'), source, v.get('CDS_RECOVERY_RT'))
for pcs in ['CBGN', 'CMAN']:
- logger.info(f"Retrieving quotes for {pcs}")
+ logger.info(f"Inserting quotes for {pcs}")
with serenitasdb.cursor() as c:
c.executemany(sql_str, [build_tuple(k, v, workdate, pcs) for k, v in r[pcs].items()])
serenitasdb.commit()