Skip to content

Commit a9c599b

Browse files
authored
Fix result of process_doctype (#51)
Make boolean of all task results
1 parent 4c86b2d commit a9c599b

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

changelog.d/51.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix result of ``process_doctype``.

src/docbuild/cli/cmd_metadata/metaprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ async def process_doctype(
212212
]
213213
results = await asyncio.gather(*tasks)
214214

215-
return True
215+
return all(results)
216216

217217

218218
async def process(

0 commit comments

Comments
 (0)