Merge pull request #22804 from mahyard/master

Delete extra parentheses which prevented a message from being extracted
This commit is contained in:
Ned Batchelder
2020-01-12 09:40:02 -05:00
committed by GitHub

View File

@@ -36,11 +36,11 @@ from openedx.core.djangolib.markup import HTML, Text
<div class="status submission-error">
<h4 class="message-title">${_("Invalid Password Reset Link")}</h4>
<ul class="message-copy">
${Text(_((
${Text(_(
"This password reset link is invalid. It may have been used already. "
"To reset your password, go to the {start_link}sign-in{end_link} page and "
"select {start_strong}Forgot password{end_strong}."
))).format(
)).format(
start_link=HTML('<a href="/login">'),
end_link=HTML('</a>'),
start_strong=HTML('<strong>'),