Addon Manager: Update to Python 3.8

This commit is contained in:
Chris Hennes
2022-12-17 18:33:40 -06:00
parent 89c191e160
commit 95f474a86a
8 changed files with 14 additions and 15 deletions

View File

@@ -280,7 +280,7 @@ def get_macro_version_from_file(filename: str) -> str:
as well as a reference to __date__"""
date = ""
with open(filename, "r", errors="ignore", encoding="utf-8") as f:
with open(filename, errors="ignore", encoding="utf-8") as f:
line_counter = 0
max_lines_to_scan = 200
while line_counter < max_lines_to_scan: