~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/diff.py

  • Committer: Robert Collins
  • Date: 2008-09-19 06:53:41 UTC
  • mto: (3696.5.1 commit-updates)
  • mto: This revision was merged to the branch mainline in revision 3741.
  • Revision ID: robertc@robertcollins.net-20080919065341-5t5w1p2gi926nfia
First cut - make it work - at updating the tree stat cache during commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
682
682
                 path_encoding='utf-8'):
683
683
        DiffPath.__init__(self, old_tree, new_tree, to_file, path_encoding)
684
684
        self.command_template = command_template
685
 
        self._root = tempfile.mkdtemp(prefix='bzr-diff-')
 
685
        self._root = osutils.mkdtemp(prefix='bzr-diff-')
686
686
 
687
687
    @classmethod
688
688
    def from_string(klass, command_string, old_tree, new_tree, to_file,