/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 workingtree.py

Fix kind name for working trees.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
        else:
72
72
            file_id = old_file_id
73
73
        if stat.S_ISLNK(mode):
74
 
            kind = 'link'
 
74
            kind = 'symlink'
75
75
        else:
76
76
            assert stat.S_ISREG(mode)
77
77
            kind = 'file'