summaryrefslogtreecommitdiffstats
path: root/registration/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'registration/views.py')
-rw-r--r--registration/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/registration/views.py b/registration/views.py
index 8228fa9..d42c4c0 100644
--- a/registration/views.py
+++ b/registration/views.py
@@ -81,7 +81,7 @@ def activate(request, activation_key,
context[key] = callable(value) and value() or value
return render_to_response(template_name,
c.update({ 'account': account,
- 'expiration_days': settings.ACCOUNT_ACTIVATION_DAYS, 'settings':settings}),
+ 'expiration_days': settings.ACCOUNT_ACTIVATION_DAYS, 'settings': settings, }),
context_instance=context,)
@@ -166,5 +166,5 @@ def register(request, success_url=None,
for key, value in extra_context.items():
context[key] = callable(value) and value() or value
return render_to_response(template_name,
- c.update({ 'form': form,'settings':settings }),
+ c.update({ 'form': form, 'settings': settings, }),
context_instance=context)