~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: James Westby
  • Date: 2009-03-12 03:03:59 UTC
  • mfrom: (4119.2.1 bzr.dev)
  • mto: This revision was merged to the branch mainline in revision 4124.
  • Revision ID: james.westby@canonical.com-20090312030359-ishfh5p46t2isl1n
Merge 1.13 back to trunk, and move new things in bzr.dev to top of NEWS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
729
729
                kind = 'tree-reference'
730
730
            return kind, None, None, None
731
731
        elif kind == 'symlink':
732
 
            return ('symlink', None, None, os.readlink(abspath.encode(osutils._fs_enc)))
 
732
            return ('symlink', None, None,
 
733
                    os.readlink(abspath.encode(osutils._fs_enc)
 
734
                                ).decode(osutils._fs_enc))
733
735
        else:
734
736
            return (kind, None, None, None)
735
737