Saturday, March 21, 2026
1 change · saas-18.4
Resolved issues and error corrections
This update corrects a minor bug in the SendCloud delivery service that was preventing proper processing of shipments. The issue stemmed from incorrect Python slicing, which caused an error when attempting to retrieve data. The fix ensures reliable delivery processing.
Original PR description
Slicing in Python returns a sub-list, even for a single element. Doing `res[:1]` does not return the first element so doing `.get` causes an error. This was not caught because the tests do not run in CI due to the tags on the class. Forward-Port-Of: odoo/enterprise#111254