mirror of
https://github.com/DarrylNixon/melamine.git
synced 2024-04-22 06:27:20 -07:00
Fix async for / await in mount_bound...
This commit is contained in:
parent
935c647624
commit
9e92baba1c
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ async def mount_bound_rglob(path: AsyncPath, mount: AsyncPath, pattern: str, ign
|
||||||
if await find_mount(path) == mount:
|
if await find_mount(path) == mount:
|
||||||
logger.info(f"Skipping differently mounted subdir: {path} (wanted {mount}))")
|
logger.info(f"Skipping differently mounted subdir: {path} (wanted {mount}))")
|
||||||
return
|
return
|
||||||
for subpath in await path.glob(pattern):
|
async for subpath in path.glob(pattern):
|
||||||
async for subitem in mount_bound_rglob(subpath, mount, pattern):
|
async for subitem in mount_bound_rglob(subpath, mount, pattern):
|
||||||
yield subitem
|
yield subitem
|
||||||
yield path
|
yield path
|
||||||
|
|
Loading…
Reference in a new issue