Skip to content

Commit a4cda08

Browse files
committed
Fix: ftools needs .split()
Missing in last PR: inputs parsing needs to be split into a list.
1 parent 04d9a38 commit a4cda08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def load_params(args):
8787
elif opt == "emailTo":
8888
mysuite.emailTo = value.split(",")
8989
elif opt == "ftools":
90-
mysuite.ftools = value
90+
mysuite.ftools = value.split()
9191
elif opt == "extra_tools":
9292
mysuite.extra_tools = value
9393

0 commit comments

Comments
 (0)