Commit c664e16b authored by Linus Torvalds's avatar Linus Torvalds
Browse files

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
parents 716f4aaa c23de7ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):