/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Martin Pool
  • Date: 2009-03-12 04:44:43 UTC
  • mfrom: (4122.1.1 integrate-1.13)
  • mto: This revision was merged to the branch mainline in revision 4140.
  • Revision ID: mbp@sourcefrog.net-20090312044443-dabkh2yeci9p1u4j
mergeĀ backĀ 1.13

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