diff options
Diffstat (limited to 'python/report_ops/__main__.py')
| -rw-r--r-- | python/report_ops/__main__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/report_ops/__main__.py b/python/report_ops/__main__.py index 0f8f2440..a2f501e6 100644 --- a/python/report_ops/__main__.py +++ b/python/report_ops/__main__.py @@ -17,7 +17,7 @@ from .sma import ( ) from .cash import NTCashReport, UMBCashReport, BNYCashReport from .admin import AccruedReport, AllReport -from .wires import BowdstWire, NTWire +from .wires import Wire from .custodians import upload_to_custodian from .utils import notify_payment_settlements, PaymentMonitor @@ -103,9 +103,9 @@ if args.isosel_reports: logger.info(e) if args.wire_reports: - for wire_report in (BowdstWire, NTWire): + for fund in ("BOWDST", "ISOSEL"): try: - wire_report.to_db(args.date) + Wire[fund].to_db(args.date) except ValueError as e: logger.info(e) |
