mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-10 19:26:35 +03:00
Fix TabError: inconsistent use of tabs and spaces in indentation
This commit is contained in:
parent
24af3512de
commit
4b9b631744
|
@ -110,7 +110,7 @@ class PasswordResetConfirmSerializer(serializers.Serializer):
|
|||
self.set_password_form = self.set_password_form_class(user=self.user,
|
||||
data=attrs)
|
||||
if not self.set_password_form.is_valid():
|
||||
raise serializers.ValidationError(self.set_password_form.errors)
|
||||
raise serializers.ValidationError(self.set_password_form.errors)
|
||||
if not default_token_generator.check_token(self.user, attrs['token']):
|
||||
raise ValidationError({'token': ['Invalid value']})
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user