Display st_mode using 6 octal digits

This commit is contained in:
Spencer McIntyre 2021-12-08 11:29:21 -05:00
parent 82a22ad38c
commit ad0dba9385
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ class FileStat
# #
def prettymode def prettymode
m = mode m = mode
om = '%04o' % m om = '%06o' % m
perms = '' perms = ''
3.times { 3.times {