On 11/15/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > You must be missing something: > > >>> from django.contrib.auth.models import User > >>> u = User(username='foo', password='bar') > >>> u.save()
OK, I think we're both misunderstanding here. What I'm saying is that doing this: u = User(username='foo', password='bar') u.save() *should* be throwing errors, because you have to supply values for all the required fields. The fact that the model defines some default values doesn't actually mean you can leave those out -- default values are *only* used when displaying a form to the user, they're not "auto-filled" by Django in other cases. Which is why I suggested using 'User.objects.create_user', which *will* work with only three arguments (username, password and email address) and will make sure all the other required fields are filled in. -- "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 -~----------~----~----~----~------~----~------~--~---