diff options
| -rw-r--r-- | python/report_ops/__main__.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/python/report_ops/__main__.py b/python/report_ops/__main__.py index 878ff007..15828715 100644 --- a/python/report_ops/__main__.py +++ b/python/report_ops/__main__.py @@ -95,7 +95,10 @@ if args.wire_reports: if args.send_to_custodians: conn = dbconn("dawndb") em = ExchangeMessage() - for account in ("BBH",): + for account in ( + "BBH", + "UMB", + ): try: upload_to_custodian(account, args.date, conn, not args.no_upload, em) except ValueError as e: |
