From aa2a854af704cb82d28000f73e6492b2623417fa Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Fri, 28 Jun 2013 17:07:55 +0200 Subject: [PATCH] [MERGE] icon moved to description bzr revid: al@openerp.com-20130628150755-2z42ct0p819ajtyq --- openerp/modules/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/modules/module.py b/openerp/modules/module.py index cc7b5904c73..cf3ff61805e 100644 --- a/openerp/modules/module.py +++ b/openerp/modules/module.py @@ -244,7 +244,7 @@ def get_module_resource(module, *args): return False def get_module_icon(module): - iconpath = ['static', 'src', 'img', 'icon.png'] + iconpath = ['static', 'description', 'icon.png'] if get_module_resource(module, *iconpath): return ('/' + module + '/') + '/'.join(iconpath) return '/base/' + '/'.join(iconpath)