Skip to content

Commit d6a35b9

Browse files
committed
Change output string a bit
1 parent d6a5a7c commit d6a35b9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/docbuild/cli/cmd_metadata/metaprocess.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ def store_productdocset_json(
340340
# files: list[Path]
341341
# TODO: Create a Deliverable object?
342342
product = doctype.product.value
343-
stdout.print(f" > Processed group: {doctype} / {docset}")
343+
stdout.print(f" Processed group: {doctype} / {docset}")
344344
# The XPath logic is encapsulated within the Doctype model
345345
productxpath = f"./{doctype.product_xpath_segment()}"
346346
productnode = stitchnode.find(productxpath)
@@ -361,7 +361,7 @@ def store_productdocset_json(
361361
)
362362

363363
for f in files:
364-
stdout.print(f.stem)
364+
stdout.print(f" | {f.stem}")
365365
try:
366366
with (meta_cache_dir / f).open(encoding="utf-8") as fh:
367367
loaded_doc_data = json.load(fh)

0 commit comments

Comments
 (0)