From d22afb8c92603803d9ba172296c0f4f3c67fc989 Mon Sep 17 00:00:00 2001 From: Douglas Hall Date: Tue, 16 May 2017 12:53:43 -0400 Subject: [PATCH] Fix formatting issues with LMS account activation email. This removes extra whitespace in the body of the LMS account activation email. ENT-388 --- lms/templates/emails/activation_email.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lms/templates/emails/activation_email.txt b/lms/templates/emails/activation_email.txt index 670875c4cc..4c4d431a0c 100644 --- a/lms/templates/emails/activation_email.txt +++ b/lms/templates/emails/activation_email.txt @@ -1,12 +1,12 @@ <%! from django.utils.translation import ugettext as _ %> -${_("You're almost there! Use the link to activate your account to access engaging, high-quality " -"{platform_name} courses. Note that you will not be able to log back into your account until " +${_("You're almost there! Use the link to activate your account to access engaging, high-quality " +"{platform_name} courses. Note that you will not be able to log back into your account until " "you have activated it.").format(platform_name=platform_name)} % if is_secure: - https://${ site }/activate/${ key } +https://${ site }/activate/${ key } % else: - http://${ site }/activate/${ key } +http://${ site }/activate/${ key } % endif ${_("Enjoy learning with {platform_name}.").format(platform_name=platform_name)}