summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2024-02-12 14:11:30 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2024-02-12 14:11:30 -0800
commitc664e16bb1ba1c8cf1d7ecf3df5fd83bbb8ac15a (patch)
treed3711a8d2219030949d90d4eb7738c51a3c140cb /Documentation
parent716f4aaa7b48a55c73d632d0657b35342b1fefd7 (diff)
parentc23de7ceae59e4ca5894c3ecf4f785c50c0fa428 (diff)
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.py2
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):