From: Xavier Morel Date: Fri, 10 Oct 2014 15:27:32 +0000 (+0200) Subject: [FIX] base: incorrect translation mark X-Git-Url: http://git.inspyration.org/?p=odoo%2Fodoo.git;a=commitdiff_plain;h=4d4d4f248f4896f69de9d7bef1b1c4f11385faac [FIX] base: incorrect translation mark --- diff --git a/openerp/addons/base/res/res_config.py b/openerp/addons/base/res/res_config.py index b5438e7..1b6b17b 100644 --- a/openerp/addons/base/res/res_config.py +++ b/openerp/addons/base/res/res_config.py @@ -466,10 +466,12 @@ class res_config_settings(osv.osv_memory, res_config_module_installation_mixin): dep_name = [x.shortdesc for x in module_pool.browse( cr, uid, dep_ids + module_ids, context=context)] message = '\n'.join(dep_name) - return {'warning': {'title': _('Warning!'), - 'message': - _('Disabling this option will also uninstall the following modules \n%s' % message) - }} + return { + 'warning': { + 'title': _('Warning!'), + 'message': _('Disabling this option will also uninstall the following modules \n%s') % message, + } + } return {} def _get_classified_fields(self, cr, uid, context=None):