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 606150b2..ff241e23 100644 --- a/python/report_ops/__main__.py +++ b/python/report_ops/__main__.py @@ -103,9 +103,9 @@ if args.cash_reports or args.wire_reports: if args.isosel_reports: for fund in ("ISOSEL",): for report in ("isosel_accrued", "citco_reports"): - report = CitcoReport[report] + report = CitcoReport[report](cob, fund) try: - report.to_db(cob, fund) + report.to_db() except MissingDataError as e: logger.warning(e) |
