Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
adamnovak committed Jan 12, 2024
1 parent b9cdb25 commit e520a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toil/lib/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def try_path(path: str, min_size: int = 100 * 1024 * 1024) -> Optional[str]:
# Is the filesystem big enough?
# We need to look at the FS size and not the free space so we don't change
# over to a different filesystem when this one fills up.
fs_size = statvfs.f_frsize * statvfs.f_blocks
fs_size = stats.f_frsize * stats.f_blocks
if fs_size < min_size:
# Too small
return None
Expand Down

0 comments on commit e520a9a

Please sign in to comment.