aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/process_queue.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/process_queue.py b/python/process_queue.py
index 42819f6b..3720b8a0 100644
--- a/python/process_queue.py
+++ b/python/process_queue.py
@@ -91,6 +91,8 @@ def process_upload(
) -> None:
key = f"{trade_type}_upload"
for fund, l in groupby(p, key, "fund").items():
+ if trade_type == "wire":
+ fund = "BOWDST"
buf = StringIO()
csvwriter = csv.writer(buf)
csvwriter.writerow(get_headers(trade_type, fund))