Skip to content

Commit 8b247b0

Browse files
authored
Merge pull request robcarver17#1056 from tgibson11/patch-96
Fix bug in spread cost init script
2 parents e0cbe1d + 295e425 commit 8b247b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sysinit/futures/repocsv_spread_costs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def process_new_instruments(
5757
if check_on_add:
5858
okay_to_add = true_if_answer_is_yes(
5959
"Add cost of %f for %s to database?"
60-
% (instrument_code, spread_for_instrument)
60+
% (spread_for_instrument, instrument_code)
6161
)
6262
if not okay_to_add:
6363
continue

0 commit comments

Comments
 (0)