~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Frank Aspell
  • Date: 2009-02-22 16:54:02 UTC
  • mto: This revision was merged to the branch mainline in revision 4256.
  • Revision ID: frankaspell@googlemail.com-20090222165402-2myrucnu7er5w4ha
Fixing various typos

Show diffs side-by-side

added added

removed removed

Lines of Context:
413
413
            return self.branch.repository.revision_tree(revision_id)
414
414
        except (errors.RevisionNotPresent, errors.NoSuchRevision):
415
415
            # the basis tree *may* be a ghost or a low level error may have
416
 
            # occured. If the revision is present, its a problem, if its not
 
416
            # occurred. If the revision is present, its a problem, if its not
417
417
            # its a ghost.
418
418
            if self.branch.repository.has_revision(revision_id):
419
419
                raise
541
541
 
542
542
        revision
543
543
            If not None, the cloned tree will have its last revision set to 
544
 
            revision, and and difference between the source trees last revision
 
544
            revision, and difference between the source trees last revision
545
545
            and this one merged in.
546
546
        """
547
547
        # assumes the target bzr dir format is compatible.
1943
1943
                        tree_delta.unversioned.extend((unknown_file,))
1944
1944
                raise errors.BzrRemoveChangedFilesError(tree_delta)
1945
1945
 
1946
 
        # Build inv_delta and delete files where applicaple,
 
1946
        # Build inv_delta and delete files where applicable,
1947
1947
        # do this before any modifications to inventory.
1948
1948
        for f in files:
1949
1949
            fid = self.path2id(f)
2200
2200
            parent_trees = [(self.branch.last_revision(), to_tree)]
2201
2201
            merges = self.get_parent_ids()[1:]
2202
2202
            # Ideally we ask the tree for the trees here, that way the working
2203
 
            # tree can decide whether to give us teh entire tree or give us a
 
2203
            # tree can decide whether to give us the entire tree or give us a
2204
2204
            # lazy initialised tree. dirstate for instance will have the trees
2205
2205
            # in ram already, whereas a last-revision + basis-inventory tree
2206
2206
            # will not, but also does not need them when setting parents.