From cdf517d1781bc59fb403fc2371a6084a770392ce Mon Sep 17 00:00:00 2001 From: Martin Trigaux Date: Fri, 4 Jul 2014 14:02:04 +0200 Subject: [PATCH] [FIX] l10n_multilang: reduce dependencies of l10n_multilang The installation of a multilang localisation (e.g. Belgium) used to install as well account_accountant (and then account_voucher) for no technical reason and was considered as the full accounting package. --- addons/l10n_multilang/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/l10n_multilang/__openerp__.py b/addons/l10n_multilang/__openerp__.py index 5c91e1472c4..0b804c27263 100644 --- a/addons/l10n_multilang/__openerp__.py +++ b/addons/l10n_multilang/__openerp__.py @@ -32,7 +32,7 @@ templates to target objects. """, 'website': 'http://www.openerp.com', - 'depends' : ['account_accountant'], + 'depends' : ['account'], 'data': [], 'demo': [], 'installable': True,