Same error message for socialLogin

user already registered
This commit is contained in:
Allan Nozomu Fukasawa 2019-06-26 14:25:48 -03:00 committed by GitHub
parent 624ad01afb
commit fbe5846ac4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,7 +136,7 @@ class SocialLoginSerializer(serializers.Serializer):
).exists()
if account_exists:
raise serializers.ValidationError(
_("User is already registered with this e-mail address.")
_("A user is already registered with this e-mail address.")
)
login.lookup()