Daily updates from Odoo
Friday, September 20, 2019
1 change · master
Features or functions removed from Odoo
This change removes old compatibility names for loading Odoo modules and updates affected code to use the current Odoo import paths. It reduces maintenance complexity and helps keep the platform aligned with modern Python standards, with little direct impact for business users unless custom code still uses the retired names.
Original PR description
`openerp` module/addons imports has been deprecated in v13 by 7c47eb1 for removal in v14. If you were still using the removed aliases, please substitute all `import openerp` by `import odoo` and `import openerp.addons` by `import odoo.addons`. If you were still using the removed `ad_paths` proxy, please use the python standard `odoo.addons.__path__`.