Skip to content
Unverified Commit f7402a96 authored by Paul Wise's avatar Paul Wise
Browse files

Convert HTML entities to UTF-8 instead

Changes-by: this Python 3 script:

import html
with open("Mirrors.masterlist") as f:
        for line in f:
                print(html.unescape(line), end='')
parent 8af8cae4
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment