Skip to content
Snippets Groups Projects
Commit e50e50d8 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

comparators.utils.file: Correct reference to path_apparent_size.

parent ce3959c1
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ def path_apparent_size(path=".", visited=None):
continue
visited[inode] = entry.stat(follow_symlinks=False).st_size
if entry.is_dir(follow_symlinks=False):
folder_size(entry.path, visited)
path_apparent_size(entry.path, visited)
return sum(visited.values())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment