[FIX] Project : Corrected former commit
authorRME(OpenERP) <>
Tue, 3 Aug 2010 14:38:23 +0000 (20:08 +0530)
committerJay (Open ERP) <jvo@tinyerp.com>
Tue, 3 Aug 2010 14:38:23 +0000 (20:08 +0530)
bzr revid: jvo@tinyerp.com-20100803143823-060pxehoogj54srh

addons/project/company.py

index ea9458b..18f9701 100644 (file)
@@ -35,7 +35,7 @@ class res_company(osv.osv):
     def write(self, cr, uid, ids,vals, context={}):
         task_ids=self.pool.get('project.task').search(cr, uid, [('state','in',['open', 'pending'])])
         if ('project_time_mode_id' in vals) and task_ids:
-            raise osv.except_osv(_('Error !'), _('You can not modify Project Time Unit as there are open or pending tasks created with current time unit.))
+            raise osv.except_osv(_('Error !'), _('You cannot modify Project Time Unit as there are open or pending tasks created with current time unit.'))
         return super(res_company,self).write(cr, uid, ids, vals, context=context)
 
 res_company()