diff --git a/django/db/models/manipulators.py b/django/db/models/manipulators.py index 02d1742517..faf453b86b 100644 --- a/django/db/models/manipulators.py +++ b/django/db/models/manipulators.py @@ -129,7 +129,6 @@ class AutomaticManipulator(forms.Manipulator): # TODO: Add to 'fields_changed' expanded_data = DotExpandedDict(dict(new_data)) - print expanded_data # Save many-to-one objects. Example: Add the Choice objects for a Poll. for related in self.opts.get_all_related_objects(): # Create obj_list, which is a DotExpandedDict such as this: @@ -216,7 +215,6 @@ class AutomaticManipulator(forms.Manipulator): # Save many-to-many objects. for f in related.opts.many_to_many: if child_follow.get(f.name, None) and not f.rel.edit_inline: - print 'rel_new_data:',rel_new_data setattr(new_rel_obj, f.name, f.rel.to.objects.filter(pk__in=rel_new_data[f.attname])) if self.change: self.fields_changed.append('%s for %s "%s"' % (f.verbose_name, related.opts.verbose_name, new_rel_obj))