Skip to content

Commit ec41ccb

Browse files
committed
Fixed underscore problem with merge lists
1 parent 6a04c7b commit ec41ccb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

shuffle-tools/1.2.0/src/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1408,6 +1408,7 @@ def merge_lists(self, list_one, list_two, set_field="", sort_key_list_one="", so
14081408
self.logger.info("Define a JSON key to set for List two (Set Field)")
14091409
list_one[i][base_key] = list_two[i]
14101410
else:
1411+
set_field = set_field.replace(" ", "_", -1)
14111412
list_one[i][set_field] = list_two[i]
14121413
except Exception as e:
14131414
return {

0 commit comments

Comments
 (0)