diff options
Diffstat (limited to 'ishtar_common/wizards.py')
-rw-r--r-- | ishtar_common/wizards.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index 4a7181e9f..ca18d6697 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -1421,7 +1421,7 @@ class AccountWizard(Wizard): 'site': site and site.domain or "" } t = loader.get_template('account_activation_email.txt') - msg = t.render(context) + msg = t.render(context, self.request) subject = _(u"[%(app_name)s] Account creation/modification") % { "app_name": app_name} send_mail(subject, msg, settings.ADMINS[0][1], |