Rev 3782: Do not alter InventoryDirectory objects provided to Inventory.apply_delta. in http://people.ubuntu.com/~robertc/baz2.0/repository

Robert Collins robertc at robertcollins.net
Fri Nov 14 04:06:45 GMT 2008


At http://people.ubuntu.com/~robertc/baz2.0/repository

------------------------------------------------------------
revno: 3782
revision-id: robertc at robertcollins.net-20081114040641-3vfc7y1veq9qtblq
parent: robertc at robertcollins.net-20081114033944-4ykgkaa0dlauq40k
committer: Robert Collins <robertc at robertcollins.net>
branch nick: repository
timestamp: Fri 2008-11-14 15:06:41 +1100
message:
  Do not alter InventoryDirectory objects provided to Inventory.apply_delta.
modified:
  bzrlib/inventory.py            inventory.py-20050309040759-6648b84ca2005b37
=== modified file 'bzrlib/inventory.py'
--- a/bzrlib/inventory.py	2008-11-14 03:36:34 +0000
+++ b/bzrlib/inventory.py	2008-11-14 04:06:41 +0000
@@ -969,7 +969,11 @@
                 # Pop the child which to allow detection of children whose
                 # parents were deleted and which were not reattached to a new
                 # parent.
-                new_entry.children = children.pop(new_entry.file_id, {})
+                replacement = InventoryDirectory(new_entry.file_id,
+                    new_entry.name, new_entry.parent_id)
+                replacement.revision = new_entry.revision
+                replacement.children = children.pop(replacement.file_id, {})
+                new_entry = replacement
             self.add(new_entry)
         if len(children):
             # Get the parent id that was deleted




More information about the bazaar-commits mailing list