partsneeded split correctly. ; is the delimiter

parent f622b5b1
......@@ -62,7 +62,7 @@ class ReadJSWorkPlan(plugin.InputPreparationPlugin):
partsneeded = line[-4]
# if there are requested parts then split them
if partsneeded:
partsneeded = partsneeded.replace(" ","").split(',')
partsneeded = partsneeded.replace(" ","").split(';')
else:
partsneeded = [""]
technology = line[3]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment