[FIX] typo

bzr revid: fp@tinyerp.com-20100518132007-esb4l51obv3daoje
This commit is contained in:
Fabien Pinckaers 2010-05-18 15:20:07 +02:00
parent b42f9b8bbd
commit c3ccf96968
1 changed files with 3 additions and 3 deletions

View File

@ -550,12 +550,12 @@ class config_compute_remaining(osv.osv_memory):
return False
_columns = {
'remaining_hours' : fields.float('Remaining Hours', digits=(16,2), help="Re-estimated time that will change the remaining hours of the task"),
}
'remaining_hours' : fields.float('Remaining Hours', digits=(16,2), help="Put here the remaining hours required to close the task."),
}
_defaults = {
'remaining_hours': _get_remaining
}
}
def compute_hours(self, cr, uid, ids, context=None):
task_obj = self.pool.get('project.task')