[FIX] base_calendar : Typo Fixed on notification for missing email on invitation wizard

bzr revid: ach@tinyerp.com-20110419115936-2x0o1rrvu9sov1b0
This commit is contained in:
Anup (OpenERP) 2011-04-19 17:29:36 +05:30
parent 2c3c064a22
commit 1060ac58c3
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ send an Email to Invited Person')
if not mail_to:
name = map(lambda x: x[1], filter(lambda x: type==x[0], \
self._columns['type'].selection))
raise osv.except_osv(_('Error!'), ("%s must have an email Address to send mail") %(name[0]))
raise osv.except_osv(_('Error!'), ("%s must have an email address to send mail") %(name[0]))
att_obj._send_mail(cr, uid, attendees, mail_to, \
email_from = current_user.user_email or tools.config.get('email_from', False))