Skip to content

Commit

Permalink
rename --bugreport to --report
Browse files Browse the repository at this point in the history
  • Loading branch information
nulano committed Mar 4, 2024
1 parent 4dbc428 commit 07f2b96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/ISSUE_REPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Thank you.
* Pillow:

```text
Please paste here the output of running `python3 -m PIL --bugreport`,
Please paste here the output of running `python3 -m PIL --report`,
or the output of the following Python code:
from PIL import features
Expand Down
2 changes: 1 addition & 1 deletion src/PIL/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

from .features import pilinfo

pilinfo(supported_formats="--bugreport" not in sys.argv)
pilinfo(supported_formats="--report" not in sys.argv)
2 changes: 1 addition & 1 deletion src/PIL/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ 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 --bugreport`` to have
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.
Expand Down

0 comments on commit 07f2b96

Please sign in to comment.