Re: [PATCH] Fix unaesthetic indentation
From: Jonathan Corbet <corbet@lwn.net>
Date: 2021-02-15 16:36:55
Matthew Wilcox [off-list ref] writes:
quoted hunk ↗ jump to hunk
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>diff --git a/Documentation/conf.py b/Documentation/conf.py index 5bd45d5fb0a0..8a9ed3f29cd5 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py@@ -50,7 +50,7 @@ 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. - ''') +''')
The alternative would be:
possible issues in the generated output.\n''')
jon