From ffb6ecc335bb42b16d864ad6df139716c31029c2 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Thu, 10 Aug 2006 03:44:11 +0000 Subject: [PATCH] Fixed #2484 -- Handle num_in_admin and num_extra_on_change being 0 for the admin interface. Thanks, Joseph Kocherhans. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3546 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/manipulators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/manipulators.py b/django/db/models/manipulators.py index 69e13dd160..b0ce48dec5 100644 --- a/django/db/models/manipulators.py +++ b/django/db/models/manipulators.py @@ -138,7 +138,7 @@ class AutomaticManipulator(forms.Manipulator): child_follow = self.follow.get(related.name, None) if child_follow: - obj_list = expanded_data[related.var_name].items() + obj_list = expanded_data.get(related.var_name, {}).items() if not obj_list: continue