On 12/1/06, scum <[EMAIL PROTECTED]> wrote:
> >>> a = User()
> >>> a.save()
> >>> a.get_profile()
> Traceback (most recent call last):
> ...
> DoesNotExist: UserProfile matching query does not exist.

Well, two things are going wrong here.

1. You have to explicitly instantiate and save a UserProfile object
before get_profile() will do anything -- Django will not implicitly
create objects for you in the shell like that.

2. If you haven't already, you also need to set the value of
AUTH_PROFILE_MODULE in your settings file before get_profile() will do
anything useful.

-- 
"May the forces of evil become confused on the way to your house."
  -- George Carlin

--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to