AUTHORS file is iso-8859-1 and should be utf-8
Bug #2107405 reported by
Scott
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Beautiful Soup |
Fix Released
|
Undecided
|
Unassigned |
Bug Description
Hello,
License files, https:/
```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.
Changed in beautifulsoup: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.
Thanks for taking the time to file this issue. The converted AUTHORS file is in revision 81e279b.