Skip to content

Commit

Permalink
[FIX] hr_holidays: missing context
Browse files Browse the repository at this point in the history
Closes #9386, opw-677958
  • Loading branch information
mart-e committed May 19, 2016
1 parent 7c5275b commit e352311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/hr_holidays/hr_holidays.py
Expand Up @@ -444,7 +444,7 @@ def holidays_refuse(self, cr, uid, ids, context=None):
return True

def holidays_cancel(self, cr, uid, ids, context=None):
for record in self.browse(cr, uid, ids):
for record in self.browse(cr, uid, ids, context=context):
# Delete the meeting
if record.meeting_id:
record.meeting_id.unlink()
Expand Down

0 comments on commit e352311

Please sign in to comment.