diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-12 02:05:36 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-12 02:05:36 -0400 |
commit | fc1ec14951cf3ebfc5a37df1f1b06fa3adac29bc (patch) | |
tree | f83556404a16a8c23a463cbfd20eb9903ddc4d09 /tools/make-man-index.py | |
parent | b3818c47a4561989cea9b4cbe61d61c27cab459f (diff) |
dependency tracking for manpages
Diffstat (limited to 'tools/make-man-index.py')
-rwxr-xr-x | tools/make-man-index.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make-man-index.py b/tools/make-man-index.py index abc33e7394..7d11083b0b 100755 --- a/tools/make-man-index.py +++ b/tools/make-man-index.py @@ -78,7 +78,7 @@ def check_id(page, t): def make_index(pages): index = collections.defaultdict(list) for p in pages: - t = xml_parse(p) + t, _ = xml_parse(p) check_id(p, t) section = t.find('./refmeta/manvolnum').text refname = t.find('./refnamediv/refname').text |