[CLEAN] mail_mail: cleaned some forgotten spaces; fixed the commend for the notification field.

bzr revid: tde@openerp.com-20120912120144-m440eafqjtccv3sp
This commit is contained in:
Thibault Delavallée 2012-09-12 14:01:44 +02:00
parent 9511db2416
commit 6d03677e4e
1 changed files with 12 additions and 11 deletions

View File

@ -30,6 +30,7 @@ from tools.translate import _
_logger = logging.getLogger(__name__)
class mail_mail(osv.Model):
""" Model holding RFC2822 email messages to send. This model also provides
facilities to queue and send new email messages. """
@ -58,7 +59,7 @@ class mail_mail(osv.Model):
'body_html': fields.text('Rich-text Contents', help="Rich-text/HTML message"),
# Auto-detected based on create() - if 'mail_message_id' was passed then this mail is a notification
# and during unlink() we will cascade delete the parent and its attachments
# and during unlink() we will not cascade delete the parent and its attachments
'notification': fields.boolean('Is Notification')
}