diff options
| -rw-r--r-- | python/ack_checker.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/ack_checker.py b/python/ack_checker.py index 0dfa4ee2..70120185 100644 --- a/python/ack_checker.py +++ b/python/ack_checker.py @@ -67,8 +67,10 @@ def ack_check(date: datetime.date, conn): table = "trs" case "InterestRateSwapDeal": table = "irs" + case "EquityOTCOptionDeal": + table = "equityoptions" case _: - logging.info(f"unkown {dealtype}") + logging.info(f"unknown {dealtype}") continue c.execute( f"UPDATE {table} SET globeop_id=%s WHERE id=%s", |
