diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-02-12 23:11:30 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-02-12 23:11:30 +0100 |
commit | c664e16bb1ba1c8cf1d7ecf3df5fd83bbb8ac15a (patch) | |
tree | d3711a8d2219030949d90d4eb7738c51a3c140cb /Documentation | |
parent | Merge tag 'vfs-6.8-rc5.fixes' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff) | |
parent | docs: kernel_feat.py: fix build error for missing files (diff) | |
download | linux-c664e16bb1ba1c8cf1d7ecf3df5fd83bbb8ac15a.tar.xz linux-c664e16bb1ba1c8cf1d7ecf3df5fd83bbb8ac15a.zip |
Merge tag 'docs-6.8-fixes2' of git://git.lwn.net/linux
Pull documentation fix from Jonathan Corbet:
"A single fix to the kernel_feat extension for a bug that will crash
the docs build in some situations"
* tag 'docs-6.8-fixes2' of git://git.lwn.net/linux:
docs: kernel_feat.py: fix build error for missing files
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/sphinx/kernel_feat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/sphinx/kernel_feat.py b/Documentation/sphinx/kernel_feat.py index b9df61eb4501..03ace5f01b5c 100644 --- a/Documentation/sphinx/kernel_feat.py +++ b/Documentation/sphinx/kernel_feat.py @@ -109,7 +109,7 @@ class KernelFeat(Directive): else: out_lines += line + "\n" - nodeList = self.nestedParse(out_lines, fname) + nodeList = self.nestedParse(out_lines, self.arguments[0]) return nodeList def nestedParse(self, lines, fname): |