Update xml_scan.py
Browse files- xml_scan.py +1 -1
xml_scan.py
CHANGED
@@ -33,7 +33,7 @@ for number in tqdm(range(1, 45000)):
|
|
33 |
#content_id = root.find(".//package").attrib["content_id"]
|
34 |
|
35 |
|
36 |
-
with open("extracted_info.txt", "
|
37 |
info_file.write(f"{title_id},{title},{version}\n")
|
38 |
|
39 |
print(f"\r{GameID}:{title} - COMPLETE", end="")
|
|
|
33 |
#content_id = root.find(".//package").attrib["content_id"]
|
34 |
|
35 |
|
36 |
+
with open("extracted_info.txt", "w", encoding="utf-8") as info_file:
|
37 |
info_file.write(f"{title_id},{title},{version}\n")
|
38 |
|
39 |
print(f"\r{GameID}:{title} - COMPLETE", end="")
|