/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/revisiontree.py

  • Committer: John Arbash Meinel
  • Date: 2007-02-10 16:54:29 UTC
  • mto: This revision was merged to the branch mainline in revision 2294.
  • Revision ID: john@arbash-meinel.com-20070210165429-xbz7zv9ehhi6fspj
Finish auditing Repository, and fix generate_ids to always generate utf8 ids.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
from cStringIO import StringIO
20
20
 
 
21
from bzrlib import (
 
22
    osutils,
 
23
    )
21
24
from bzrlib.tree import Tree
22
25
 
23
26
 
40
43
        self._repository = branch
41
44
        self._weave_store = branch.weave_store
42
45
        self._inventory = inv
43
 
        self._revision_id = revision_id
 
46
        self._revision_id = osutils.safe_revision_id(revision_id)
44
47
 
45
48
    def get_parent_ids(self):
46
49
        """See Tree.get_parent_ids.