docs: conf.py: fix the 'utf-8' typo

"encoding" should be 'utf-8'. Fix the typo.

Fixes: 7ea9a550f7 ("docs: conf.py: several coding style fixes")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20260806051115.1235789-1-rdunlap@infradead.org>
This commit is contained in:
Randy Dunlap 2026-08-05 22:11:15 -07:00 committed by Jonathan Corbet
parent 0c56db4610
commit 391650e146

View File

@ -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":