AUTHORS file is iso-8859-1 and should be utf-8

Bug #2107405 reported by Scott
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Beautiful Soup
Fix Released
Undecided
Unassigned

Bug Description

Hello,
License files, https://peps.python.org/pep-0639/, "MUST be UTF-8 encoded". The `AUTHORS` file is iso-8859-1 via command:

```bash
% file -b --mime-encoding ./AUTHORS
iso-8859-1
```

Here is a potential fix:

```bash
% iconv -f $(file -b --mime-encoding ./AUTHORS) -t utf-8 ./AUTHORS > ./AUTHORS.TXT;
% mv ./AUTHORS.TXT ./AUTHORS
% file -b --mime-encoding ./AUTHORS
utf-8
```

I've included the output `AUTHORS` file from above for convenience.

Revision history for this message
Scott (scottschreckengaust) wrote :
Revision history for this message
Leonard Richardson (leonardr) wrote :

Thanks for taking the time to file this issue. The converted AUTHORS file is in revision 81e279b.

Changed in beautifulsoup:
status: New → Fix Committed
Changed in beautifulsoup:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.