From 966e12ee71ce25f04d2f2c11d837728fa9dc7783 Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Fri, 17 Nov 2017 13:14:46 +0100 Subject: [PATCH] [FIX] runbot: add dependency on base_setup To install properly, Runbot needs to find base.menu_config which is defined in base_setup res_config_view. --- runbot/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbot/__openerp__.py b/runbot/__openerp__.py index 471709ac..3e914ffe 100644 --- a/runbot/__openerp__.py +++ b/runbot/__openerp__.py @@ -5,7 +5,7 @@ 'version': '1.3', 'description': "Runbot", 'author': 'Odoo SA', - 'depends': ['website'], + 'depends': ['website', 'base_setup'], 'external_dependencies': { 'python': ['matplotlib'], },