~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Ian Clatworthy
  • Date: 2009-04-03 01:24:32 UTC
  • mto: (4241.2.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4243.
  • Revision ID: ian.clatworthy@canonical.com-20090403012432-2fehqrbdt27dycjk
tree code cleanups from brisbane-core

Show diffs side-by-side

added added

removed removed

Lines of Context:
905
905
            output. An unversioned file is defined as one with (False, False)
906
906
            for the versioned pair.
907
907
        """
908
 
        result = []
909
908
        lookup_trees = [self.source]
910
909
        if extra_trees:
911
910
             lookup_trees.extend(extra_trees)
977
976
                if (self.source.get_symlink_target(file_id) !=
978
977
                    self.target.get_symlink_target(file_id)):
979
978
                    changed_content = True
 
979
                # XXX: Yes, the indentation below is wrong. But fixing it broke
 
980
                # test_merge.TestMergerEntriesLCAOnDisk.
 
981
                # test_nested_tree_subtree_renamed_and_modified. We'll wait for
 
982
                # the fix from bzr.dev -- vila 2009026
980
983
                elif from_kind == 'tree-reference':
981
984
                    if (self.source.get_reference_revision(file_id, from_path)
982
985
                        != self.target.get_reference_revision(file_id, to_path)):