~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/diff.py

  • Committer: INADA Naoki
  • Date: 2010-02-25 12:07:08 UTC
  • mto: (5074.5.1 fix-523746-dev)
  • mto: This revision was merged to the branch mainline in revision 5892.
  • Revision ID: songofacandy@gmail.com-20100225120708-xwfis9i4nnp00jdz
Fix easy miss.

Show diffs side-by-side

added added

removed removed

Lines of Context:
724
724
        else:
725
725
            fenc = sys.getfilesystemencoding()
726
726
        relpath_tmp = relpath.encode(fenc, 'replace').decode(fenc, 'replace')
727
 
        relpath_tmp.replace(u'?', u'_')
 
727
        relpath_tmp = relpath_tmp.replace(u'?', u'_')
728
728
        full_path = osutils.pathjoin(self._root, prefix, relpath_tmp)
729
729
        if self._try_symlink_root(tree, prefix):
730
730
            return full_path