mirror of
https://github.com/django/django.git
synced 2025-09-23 10:42:45 +00:00
Fixed #6970 -- Raise the original IntegrityError
when all required fields aren't specified in get_or_create
instead of a misleading DoesNotExist
error, thanks deadwisdom.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8398 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
3b45a40c54
commit
ddc156bca2
2 changed files with 11 additions and 1 deletions
|
@ -332,7 +332,10 @@ class QuerySet(object):
|
|||
return obj, True
|
||||
except IntegrityError, e:
|
||||
transaction.savepoint_rollback(sid)
|
||||
return self.get(**kwargs), False
|
||||
try:
|
||||
return self.get(**kwargs), False
|
||||
except self.model.DoesNotExist:
|
||||
raise e
|
||||
|
||||
def latest(self, field_name=None):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue