diff options
author | Matthew Wilcox <willy@infradead.org> | 2021-02-15 19:17:57 +0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2021-02-23 00:35:04 +0300 |
commit | 36d8900d2000906d075802784e30b1aeefda3c5a (patch) | |
tree | 514ad0d92f767306bb97c335d70af50bcf44975f /Documentation/conf.py | |
parent | 336ced2de62d27b5a1d64672d7470e0cc7f93376 (diff) | |
download | linux-36d8900d2000906d075802784e30b1aeefda3c5a.tar.xz |
Fix unaesthetic indentation
The current documentation build looks like this:
$ make htmldocs
SPHINX htmldocs --> file:///home/willy/kernel/linux-next/Documentation/output
make[2]: Nothing to be done for 'html'.
WARNING: The kernel documentation build process
support for Sphinx v3.0 and above is brand new. Be prepared for
possible issues in the generated output.
$
That extra indentation before my next prompt isn't pretty. This patch
fixes it, but I'm not a pythonista, and maybe there's a better way.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Link: https://lore.kernel.org/r/20210215161757.GD2858050@casper.infradead.org
[jc: tweaked for the "better way"]
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/conf.py')
-rw-r--r-- | Documentation/conf.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py index 5bd45d5fb0a0..fd65168c10f8 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -49,8 +49,7 @@ extensions = ['kerneldoc', 'rstFlatTable', 'kernel_include', if major >= 3: sys.stderr.write('''WARNING: The kernel documentation build process support for Sphinx v3.0 and above is brand new. Be prepared for - possible issues in the generated output. - ''') + possible issues in the generated output.\n''') if (major > 3) or (minor > 0 or patch >= 2): # Sphinx c function parser is more pedantic with regards to type # checking. Due to that, having macros at c:function cause problems. |