/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/xml6.py

  • Committer: Alexander Belchenko
  • Date: 2007-02-27 22:12:07 UTC
  • mfrom: (2302 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2304.
  • Revision ID: bialix@ukr.net-20070227221207-icy06420x3b0ceyf
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
            revision_id = cache_utf8.encode(revision_id)
46
46
        inv = inventory.Inventory(root_id=None, revision_id=revision_id)
47
47
        for e in elt:
48
 
            ie = self._unpack_entry(e, none_parents=True)
 
48
            ie = self._unpack_entry(e)
49
49
            inv.add(ie)
50
50
        return inv
51
51