From 544edea54a77972b70b370840b472a52e584cd2e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 26 Nov 2018 17:51:08 -0400 Subject: [PATCH] Mailer: Code cleanup Signed-off-by: Roberto Rosario --- mayan/apps/mailer/settings.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/mayan/apps/mailer/settings.py b/mayan/apps/mailer/settings.py index 60874e4cc1..6a36e766da 100644 --- a/mayan/apps/mailer/settings.py +++ b/mayan/apps/mailer/settings.py @@ -17,7 +17,10 @@ setting_link_subject_template = namespace.add_setting( ) setting_link_body_template = namespace.add_setting( default=DEFAULT_LINK_BODY_TEMPLATE, - help_text=_('Template for the document link email form body text. Can include HTML.'), + help_text=_( + 'Template for the document link email form body text. ' + 'Can include HTML.' + ), global_name='MAILER_LINK_BODY_TEMPLATE' ) setting_document_subject_template = namespace.add_setting( @@ -27,6 +30,8 @@ setting_document_subject_template = namespace.add_setting( ) setting_document_body_template = namespace.add_setting( default=DEFAULT_DOCUMENT_BODY_TEMPLATE, - help_text=_('Template for the document email form body text. Can include HTML.'), + help_text=_( + 'Template for the document email form body text. Can include HTML.' + ), global_name='MAILER_DOCUMENT_BODY_TEMPLATE' )