Hi,
In one of my tests I set up a couple of users with usernames, emails,
passwords, User.objects.create_user("johndoe", "[email protected]",
"passwd"). But when I try to look them up later they don't appear to
have the email addresses, i.e.
>>> User.objects.all()
[<User: johndoe>]
>>>[n.email for n in User.objects.all()]
[u''].
>>> User.objects.filter(email="[email protected]")
[]
Has anyone seen this before?
Thanks,
Alex
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.