increase torm by one

This commit is contained in:
2020-08-17 15:06:23 +03:00
parent 2f0fd26db0
commit 9221a94de1

View File

@@ -419,7 +419,7 @@ def file_ls(name, token):
maxlen = max(maxlen, len(file))
details = []
details.append(
"%%16s %%4s %%8s %%-%ds %%s"%( maxlen, )%(
"%%16s %%5s %%8s %%-%ds %%s"%( maxlen, )%(
'Modified',
'ToRm',
'Size',
@@ -431,7 +431,7 @@ def file_ls(name, token):
for file in files:
status = file_stat(share,file)
details.append(
"%%16s %%4s %%8s %%-%ds %%s"%( maxlen, )%(
"%%16s %%5s %%8s %%-%ds %%s"%( maxlen, )%(
status['mtime'],
status['to_remove'],
status['hsize'],