aboutsummaryrefslogtreecommitdiffstats
path: root/python/report_ops/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/report_ops/__main__.py')
-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 c0700d66..d4103df6 100644
--- a/python/report_ops/__main__.py
+++ b/python/report_ops/__main__.py
@@ -89,9 +89,9 @@ if args.cash_reports:
if args.isosel_reports:
for report in ("isosel_accrued", "citco_reports"):
- report = CitcoReport[report]
try:
- report.to_db(cob)
+ report = CitcoReport[report](cob, "ISOSEL")
+ report.to_db()
except ValueError as e:
logger.warning(e)