await error

This commit is contained in:
Darryl Nixon 2023-07-16 14:42:11 -07:00
parent 4215f4dd2c
commit 992c3bad6d

View file

@ -75,7 +75,7 @@ async def main(job: argparse.Namespace) -> bool:
tasks = [] tasks = []
# scandir/glob/rglob doesn't play nice with FileNotFound errors, # scandir/glob/rglob doesn't play nice with FileNotFound errors,
# so let's avoid them entirely for now in /proc, /dev, and /sys # so let's avoid them entirely for now in /proc, /dev, and /sys
if any((mount_point / path).exists() for path in ("/proc", "/dev", "/sys")): if any(await (mount_point / path).exists() for path in ("/proc", "/dev", "/sys")):
# Traverse every directory in mount_point recursively except /proc, /dev, and /sys # Traverse every directory in mount_point recursively except /proc, /dev, and /sys
async for item in mount_point.glob("*"): async for item in mount_point.glob("*"):
if await item.is_dir(): if await item.is_dir():