fix
authorfp <fp@fp-laptop>
Sun, 10 Oct 2010 19:33:54 +0000 (21:33 +0200)
committerfp <fp@fp-laptop>
Sun, 10 Oct 2010 19:33:54 +0000 (21:33 +0200)
bzr revid: fp@fp-laptop-20101010193354-1azqu1646j4z6of7

bin/addons/base/module/wizard/base_module_configuration.py

index 345ed9a..866b229 100644 (file)
@@ -27,7 +27,7 @@ class base_module_configuration(osv.osv_memory):
     _name = "base.module.configuration"
 
     def start(self, cr, uid, ids, context=None):
-        todo_ids = self.pool.get('ir.actions.todo').search(cr, uid, ['|', ('state', '=', 'open'), '&', ('state', '=', 'skip'), ('restart', '=', 'onskip')])
+        todo_ids = self.pool.get('ir.actions.todo').search(cr, uid, ['|', '|', ('restart','=','always'), ('state', '=', 'open'), '&', ('state', '=', 'skip'), ('restart', '=', 'onskip')])
         if not todo_ids:
             # When there is no wizard todo it will display message
             data_obj = self.pool.get('ir.model.data')