Commit f51ab96e authored by Nicolas Wavrant's avatar Nicolas Wavrant

SupplyLine: use correct sliced_quantity_range property

parent 9a10398f
......@@ -147,7 +147,7 @@ class SupplyLine(Path, Amount, XMLMatrix):
quantity_step_list = [None] + self.getQuantityStepList() + [None]
min_quantity = quantity_step_list[index]
max_quantity = quantity_step_list[index+1]
cell.edit(sliced_range=(min_quantity, max_quantity))
cell.edit(sliced_quantity_range=(min_quantity, max_quantity))
return cell
############################################################
......
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