Skip to content

Commit e98c46c

Browse files
committed
Minor fix
1 parent 67b16d4 commit e98c46c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shuffle-tools/1.2.0/src/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1504,7 +1504,7 @@ def merge_lists(self, list_one, list_two, set_field="", sort_key_list_one="", so
15041504
return {"success": False, "message": "Both input lists need to be valid JSON lists."}
15051505

15061506
if len(list_one) != len(list_two):
1507-
return {"success": False, "message": "Lists length must be the same. %d vs %d" % (len(list_one), len(list_two))}
1507+
return {"success": False, "message": "Lists length must be the same. %d vs %d. Are you trying to add them to a single list? Use add_list_to_list" % (len(list_one), len(list_two))}
15081508

15091509
if len(sort_key_list_one) > 0:
15101510
try:

0 commit comments

Comments
 (0)