lint report mislabels its scan root as wiki/ instead of kb/ #102
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Root cause found: tools/chemenu/lint_core.py:529 hardcodes f"Scanned {report['page_count']} pages under \wiki/
. ...". It's a cosmetic string bug, not a functional one — the scan itself correctly walks kb/(32 pages matched exactly), only the printed label is wrong. Fix: change the literal to ``kb/``.