/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

merge bzr.dev r4164

Show diffs side-by-side

added added

removed removed

Lines of Context:
745
745
                kind = 'tree-reference'
746
746
            return kind, None, None, None
747
747
        elif kind == 'symlink':
748
 
            return ('symlink', None, None, os.readlink(abspath.encode(osutils._fs_enc)))
 
748
            return ('symlink', None, None,
 
749
                    os.readlink(abspath.encode(osutils._fs_enc)
 
750
                                ).decode(osutils._fs_enc))
749
751
        else:
750
752
            return (kind, None, None, None)
751
753