Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronn committed Jan 24, 2020
1 parent e71231c commit c662b3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drfpasswordless/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def validate(self, attrs):
print(user.id, file=sys.stderr)
print(callback_token, file=sys.stderr)

tokenx = CallbackToken.objects.filter(key=callback_token)
tokenx = CallbackToken.objects.filter(key=callback_token).first()
print(tokenx.user.id, file=sys.stderr)
print(tokenx.key, file=sys.stderr)
print(tokenx.type, file=sys.stderr)
Expand Down

0 comments on commit c662b3c

Please sign in to comment.