[FIX] hr_holidays: unnecessary ',' causing crash removed

bzr revid: tde@openerp.com-20120312115243-f6tos2qqna3li7z0
This commit is contained in:
Thibault Delavallée 2012-03-12 12:52:43 +01:00
parent 86b72a1f80
commit cbc9654b83
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ class hr_holidays(osv.osv):
for obj in self.browse(cr, uid, ids):
self.message_append_note(cr, uid, [obj.id], _('System notification'),
_("The %s request has been confirmed and is waiting for validation by the manager.")
% ('leave' if obj.type == 'remove' else 'allocation',,), type='notification')
% ('leave' if obj.type == 'remove' else 'allocation',), type='notification')
def holidays_validate_notificate(self, cr, uid, ids, context=None):
for obj in self.browse(cr, uid, ids):