~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Robert Collins
  • Date: 2006-09-07 08:46:18 UTC
  • mto: (1991.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1992.
  • Revision ID: robertc@robertcollins.net-20060907084618-fae5efc1ca3c108d
When an entire subtree has been deleted, commit will now report that
just the top of the subtree has been deleted, rather than reporting
all the individual items. (Robert Collins)

Commit performs one less XML parse. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
557
557
        args = (DEPRECATED_PARAMETER, message, ) + args
558
558
        committed_id = Commit().commit( working_tree=self, revprops=revprops,
559
559
            *args, **kwargs)
560
 
        self._set_inventory(self.read_working_inventory())
561
560
        return committed_id
562
561
 
563
562
    def id2abspath(self, file_id):