From 34814d8d2fbcace1f31ad5857e1d61d540100812 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sat, 24 Jan 2026 12:52:49 +0200 Subject: [PATCH] Improve wording Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- src/PIL/Image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PIL/Image.py b/src/PIL/Image.py index 7d007718d..9ed251496 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -3630,8 +3630,8 @@ def open( prefix = fp.read(16) - # Try to load just the plugin needed for this file extension - # before falling back to preinit() which loads common plugins + # Try to import just the plugin needed for this file extension + # before falling back to preinit() which imports common plugins ext = os.path.splitext(filename)[1] if filename else "" if not (ext and _import_plugin_for_extension(ext)): preinit()