mirror of
https://github.com/django/django.git
synced 2025-07-05 02:09:13 +00:00
magic-removal: Fixed #1705 - creating instances of models without supplying any keyword arguments.
(NB - diff is misleading - we need diff tools that support significant whitespace!) git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2767 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
84987b8a64
commit
d4c1b55cb2
@ -79,7 +79,6 @@ class Model(object):
|
|||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
dispatcher.send(signal=signals.pre_init, sender=self.__class__, args=args, kwargs=kwargs)
|
dispatcher.send(signal=signals.pre_init, sender=self.__class__, args=args, kwargs=kwargs)
|
||||||
if kwargs:
|
|
||||||
for f in self._meta.fields:
|
for f in self._meta.fields:
|
||||||
if isinstance(f.rel, ManyToOneRel):
|
if isinstance(f.rel, ManyToOneRel):
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user