Ok
django.core.management:108:
---------------------------------------------------------
pending_references.update(references)
---------------------------------------------------------
needs to be replaced by something like:
---------------------------------------------------------
for refto, refs in references.iteritems():
oldrefs = pending_references.get( refto, None )
if oldrefs is not None:
oldrefs.extend( refs )
else:
pending_references[ refto ] = copy.copy( refs )
---------------------------------------------------------
because otherwise pending reference from previous referers are
overwritten.
- Shaun
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-developers
-~----------~----~----~----~------~----~------~--~---