summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-01-10 20:46:41 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-01-10 20:46:41 -0500
commitf3e82f233c89d5626a93e2b1f17a0bd8232f8647 (patch)
tree89637ce73afaedab01ebc681cb9e738a000efe63
parentcc3d9d400bf7c6d476f61fb978a95abb3bca748c (diff)
downloadaskbot-f3e82f233c89d5626a93e2b1f17a0bd8232f8647.tar.gz
askbot-f3e82f233c89d5626a93e2b1f17a0bd8232f8647.tar.bz2
askbot-f3e82f233c89d5626a93e2b1f17a0bd8232f8647.zip
fixed subject line for the account recovery message
-rw-r--r--askbot/deps/django_authopenid/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/deps/django_authopenid/views.py b/askbot/deps/django_authopenid/views.py
index 623eb74f..bc7fba68 100644
--- a/askbot/deps/django_authopenid/views.py
+++ b/askbot/deps/django_authopenid/views.py
@@ -989,7 +989,7 @@ def _send_email_key(user):
"""private function. sends email containing validation key
to user's email address
"""
- subject = _("Email verification subject line")
+ subject = _("Recover your %(site)s account") % {'site': askbot_settings.APP_SHORT_NAME}
message_template = ENV.get_template('authopenid/email_validation.txt')
import settings
message_context = Context({