diff --git a/combo/utils/urls.py b/combo/utils/urls.py index b83e7558..24be39f6 100644 --- a/combo/utils/urls.py +++ b/combo/utils/urls.py @@ -34,7 +34,7 @@ class TemplateError(Exception): def get_templated_url(url, context=None): if '{{' not in url and '{%' not in url and '[' not in url: return url - template_vars = Context() + template_vars = Context(use_l10n=False) if context: template_vars.update(context) template_vars['user_email'] = ''