aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/report_ops/__main__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/report_ops/__main__.py b/python/report_ops/__main__.py
index 668d69d7..fed75561 100644
--- a/python/report_ops/__main__.py
+++ b/python/report_ops/__main__.py
@@ -90,13 +90,13 @@ if args.cash_reports or args.wire_reports:
cash_report = CashReport[custodian]
try:
cash_report.to_db(args.date, fund)
- except MissingDataError as e:
+ except (MissingDataError, RuntimeError) as e:
logger.warning(e)
if args.wire_reports:
wire_report = WireReport[custodian]
try:
wire_report.to_db(args.date, fund)
- except MissingDataError as e:
+ except (MissingDataError, RuntimeError) as e:
logger.warning(e)