Django

Code

Changeset 3831

Show
Ignore:
Timestamp:
09/25/06 09:17:51 (2 years ago)
Author:
russellm
Message:

Removed some stray debug that was accidentally left in r3830.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/db/models/manipulators.py

    r3830 r3831  
    130130 
    131131        expanded_data = DotExpandedDict(dict(new_data)) 
    132         print expanded_data 
    133132        # Save many-to-one objects. Example: Add the Choice objects for a Poll. 
    134133        for related in self.opts.get_all_related_objects(): 
     
    217216                        for f in related.opts.many_to_many: 
    218217                            if child_follow.get(f.name, None) and not f.rel.edit_inline: 
    219                                 print 'rel_new_data:',rel_new_data 
    220218                                setattr(new_rel_obj, f.name, f.rel.to.objects.filter(pk__in=rel_new_data[f.attname])) 
    221219                                if self.change: