···78index = response.read()
7980parser = Pep503()
81-parser.feed(str(index))
82if package_filename not in parser.sources:
83 print(
84 "The file %s has not be found in the index %s" % (package_filename, index_url)
···78index = response.read()
7980parser = Pep503()
81+parser.feed(str(index, "utf-8"))
82if package_filename not in parser.sources:
83 print(
84 "The file %s has not be found in the index %s" % (package_filename, index_url)