Added CustomUser.DoesNotExist error exception

This commit is contained in:
M.Ravi 2017-06-22 13:40:39 +05:30
parent 31c389e72c
commit 5caa79f199
1 changed files with 3 additions and 2 deletions

View File

@ -329,8 +329,9 @@ class PaymentOrderView(FormView):
vm_template_id = template.get('id', 1)
final_price = specs.get('price')
token = form.cleaned_data.get('token')
custom_user = CustomUser.objects.get(email=user.get('email'))
if custom_user is None:
try:
custom_user = CustomUser.objects.get(email=user.get('email'))
except CustomUser.DoesNotExist:
password = CustomUser.get_random_password()
# Register the user, and do not send emails
CustomUser.register(user.get('name'),