[IMP] Project_long_term : Task scheduling code Re-factoring

bzr revid: jam@tinyerp.com-20110110060938-4wxuptfiu99r7er6
This commit is contained in:
jam-openerp 2011-01-10 11:39:38 +05:30
parent e2834e4d3e
commit d06f5c0831
1 changed files with 1 additions and 1 deletions

View File

@ -723,7 +723,7 @@ class project_task(osv.osv):
title = \"%s\"
effort = \'%s\'
resource = %s
'''%(task.id, task.name, duration, resource)
'''%(task.id, task.name, duration, str_resource)
s += '\n'
return s
project_task()