[FIX] project_issue: removed a debug line that had been forgotten.

bzr revid: tde@openerp.com-20120525135555-ypeqcl9okt79w4on
This commit is contained in:
Thibault Delavallée 2012-05-25 15:55:55 +02:00
parent 3ac8271356
commit 6b49e413fc
1 changed files with 0 additions and 1 deletions

View File

@ -460,7 +460,6 @@ class project_issue(crm.crm_case, osv.osv):
def case_cancel(self, cr, uid, ids, context=None):
""" Cancels case """
self.case_set(cr, uid, ids, 'cancelled', {'active': True}, context=context)
for truc in self.browse(cr, uid, ids, context=context):
self.case_cancel_send_note(cr, uid, ids, context=context)
return True