0.91-bugfixes: fix lookup kwarg corruption in certain types of one-to-one listings. Thanks Tom Tobin for finally figuring this one out

git-svn-id: http://code.djangoproject.com/svn/django/branches/0.91-bugfixes@4936 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
James Bennett 2007-04-05 18:36:04 +00:00
parent 32b733ccbd
commit f63faca4c6
1 changed files with 1 additions and 1 deletions

View File

@ -1734,7 +1734,7 @@ def manipulator_init(opts, add, change, self, obj_key=None, follow=None):
# Sanity check -- Make sure the "parent" object exists.
# For example, make sure the Place exists for the Restaurant.
# Let the ObjectDoesNotExist exception propagate up.
lookup_kwargs = opts.one_to_one_field.rel.limit_choices_to
lookup_kwargs = opts.one_to_one_field.rel.limit_choices_to.copy()
lookup_kwargs['%s__exact' % opts.one_to_one_field.rel.field_name] = obj_key
_ = opts.one_to_one_field.rel.to.get_model_module().get_object(**lookup_kwargs)
params = dict([(f.attname, f.get_default()) for f in opts.fields])