From 7e71621671f552d3b61e448b67602627fd395bc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ondrej=20Baranovi=C4=8D?= Date: Sat, 30 Mar 2024 08:13:44 +0100 Subject: [PATCH] Update src/PIL/features.py Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- src/PIL/features.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/PIL/features.py b/src/PIL/features.py index a7384a0a0..8a0b14004 100644 --- a/src/PIL/features.py +++ b/src/PIL/features.py @@ -230,9 +230,9 @@ def pilinfo(out=None, supported_formats=True): """ Prints information about this installation of Pillow. This function can be called with ``python3 -m PIL``. - It can also be called with ``python3 -m PIL --report`` to have - "supported_formats" set to ``False``, omitting the list of all supported image - file formats. + It can also be called with ``python3 -m PIL.report`` or ``python3 -m PIL --report`` + to have "supported_formats" set to ``False``, omitting the list of all supported + image file formats. :param out: The output stream to print to. Defaults to ``sys.stdout`` if ``None``.