/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 breezy/_readdir_py.py

  • Committer: Martin
  • Date: 2017-11-12 13:53:51 UTC
  • mto: This revision was merged to the branch mainline in revision 6810.
  • Revision ID: gzlist@googlemail.com-20171112135351-uyr1ncw7visg62c2
Apply 2to3 ws_comma fixer

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
_unknown = 'unknown'
32
32
 
33
33
_formats = {
34
 
    stat.S_IFDIR:'directory',
35
 
    stat.S_IFCHR:'chardev',
36
 
    stat.S_IFBLK:'block',
37
 
    stat.S_IFREG:'file',
38
 
    stat.S_IFIFO:'fifo',
39
 
    stat.S_IFLNK:'symlink',
40
 
    stat.S_IFSOCK:'socket',
 
34
    stat.S_IFDIR: 'directory',
 
35
    stat.S_IFCHR: 'chardev',
 
36
    stat.S_IFBLK: 'block',
 
37
    stat.S_IFREG: 'file',
 
38
    stat.S_IFIFO: 'fifo',
 
39
    stat.S_IFLNK: 'symlink',
 
40
    stat.S_IFSOCK: 'socket',
41
41
}
42
42
 
43
43