From 391650e14650f4d5455762733264d5b05a5a3e99 Mon Sep 17 00:00:00 2001 From: Randy Dunlap Date: Wed, 5 Aug 2026 22:11:15 -0700 Subject: [PATCH] docs: conf.py: fix the 'utf-8' typo "encoding" should be 'utf-8'. Fix the typo. Fixes: 7ea9a550f710 ("docs: conf.py: several coding style fixes") Signed-off-by: Randy Dunlap Signed-off-by: Jonathan Corbet Message-ID: <20260806051115.1235789-1-rdunlap@infradead.org> --- Documentation/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/conf.py b/Documentation/conf.py index 3f82cfbff778..5ab26ce89daf 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -287,7 +287,7 @@ author = "The kernel development community" try: makefile_version = None makefile_patchlevel = None - with open("../Makefile", encoding="utf=8") as fp: + with open("../Makefile", encoding="utf-8") as fp: for line in fp: key, val = [x.strip() for x in line.split("=", 2)] if key == "VERSION":