We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6a5a7c commit d6a35b9Copy full SHA for d6a35b9
1 file changed
src/docbuild/cli/cmd_metadata/metaprocess.py
@@ -340,7 +340,7 @@ def store_productdocset_json(
340
# files: list[Path]
341
# TODO: Create a Deliverable object?
342
product = doctype.product.value
343
- stdout.print(f" > Processed group: {doctype} / {docset}")
+ stdout.print(f" ❱ Processed group: {doctype} / {docset}")
344
# The XPath logic is encapsulated within the Doctype model
345
productxpath = f"./{doctype.product_xpath_segment()}"
346
productnode = stitchnode.find(productxpath)
@@ -361,7 +361,7 @@ def store_productdocset_json(
361
)
362
363
for f in files:
364
- stdout.print(f.stem)
+ stdout.print(f" | {f.stem}")
365
try:
366
with (meta_cache_dir / f).open(encoding="utf-8") as fh:
367
loaded_doc_data = json.load(fh)
0 commit comments