diff options
Diffstat (limited to 'python/report_ops/__main__.py')
| -rw-r--r-- | python/report_ops/__main__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/report_ops/__main__.py b/python/report_ops/__main__.py index ff241e23..314b9d2f 100644 --- a/python/report_ops/__main__.py +++ b/python/report_ops/__main__.py @@ -87,9 +87,9 @@ if args.cash_reports or args.wire_reports: for custodian in custodians: get_custodian_download_fun(custodian)(args.date, fund, em=em) if args.cash_reports: - cash_report = CashReport[custodian] + cash_report = CashReport[custodian](args.date, fund) try: - cash_report.to_db(args.date, fund) + cash_report.to_db() except (MissingDataError, RuntimeError) as e: logger.warning(e) if args.wire_reports: |
