diff options
author | adityacp | 2020-02-28 16:14:13 +0530 |
---|---|---|
committer | adityacp | 2020-02-28 16:14:13 +0530 |
commit | baa6211f10fc2c8427387987f74a9f2631e6a1a3 (patch) | |
tree | 12a35b4c25c9f633d7f7b02974e44dbf522ebef6 /yaksh/views.py | |
parent | 846afd3469923282a75197267a5138209e807619 (diff) | |
download | online_test-baa6211f10fc2c8427387987f74a9f2631e6a1a3.tar.gz online_test-baa6211f10fc2c8427387987f74a9f2631e6a1a3.tar.bz2 online_test-baa6211f10fc2c8427387987f74a9f2631e6a1a3.zip |
Fix UI for email account verification
Diffstat (limited to 'yaksh/views.py')
-rw-r--r-- | yaksh/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/views.py b/yaksh/views.py index 1ab3503..5d2d560 100644 --- a/yaksh/views.py +++ b/yaksh/views.py @@ -2171,7 +2171,7 @@ def new_activation(request, email=None): try: user = User.objects.get(email=email) except MultipleObjectsReturned: - context['email_err_msg'] = "Multiple entries found for this email"\ + context['email_err_msg'] = "Multiple entries found for this email "\ "Please change your email" return my_render_to_response( request, 'yaksh/activation_status.html', context |