Fix unused variable
This commit is contained in:
parent
46afca2a8f
commit
3627bb0460
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ def print_directory(path, tabs=0):
|
|||
sizestr = "%0.1f MB" % (filesize / 1000000)
|
||||
|
||||
prettyprintname = ""
|
||||
for i in range(tabs):
|
||||
for _ in range(tabs):
|
||||
prettyprintname += " "
|
||||
prettyprintname += file
|
||||
if isdir:
|
||||
|
|
|
|||
Loading…
Reference in a new issue