[FIX] base: incorrect translation mark
authorXavier Morel <xmo@openerp.com>
Fri, 10 Oct 2014 15:27:32 +0000 (17:27 +0200)
committerRaphael Collet <rco@openerp.com>
Tue, 2 Dec 2014 08:40:59 +0000 (09:40 +0100)
openerp/addons/base/res/res_config.py

index b5438e7..1b6b17b 100644 (file)
@@ -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):