Skip to content

Commit b0c4a17

Browse files
authored
Fix upgrading modules with Odoo 19.0 (#23)
The changed method for upgrading modules in Odoo 19.0 does not support the parameter "all", for upgrading all modules. Instead, the module "base" should be upgraded. This also works for earlier Odoo versions.
1 parent bbd19c7 commit b0c4a17

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/doblib/module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def update_specific(
178178

179179
if installed:
180180
utils.info("Updating all modules")
181-
modules = ["all"]
181+
modules = ["base"]
182182
elif listed:
183183
utils.info("Updating listed modules")
184184
modules = self._get_modules()

0 commit comments

Comments
 (0)