cschand napisał(a):
> Hello all,
>   I have a problem with get objects from User
> 
> when i give
> user = User.objects.get(email='[EMAIL PROTECTED]')
> 
> if only one data is there it is executing ok... but if there are two
> or more it showing and AssertionError
> get() returned more than one User -- it returned 2!
> 
> Is there any way to limit to return only one data.. ?

Apart of other solutions, you might want to monkeypatch your database
and add unique constraint to email field in auth_user table. This would
prevent duplicates for the cost of Django being unable to handle this
kind of uniqueness (you have to care for that on your own). See
discussion of snippet 74 at http://www.djangosnippets.org/snippets/74/.

-- 
Jarek Zgoda
Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101

"We read Knuth so you don't have to." (Tim Peters)

--~--~---------~--~----~------------~-------~--~----~
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