Revert debug logs

This commit is contained in:
Philippe Symons 2026-02-23 20:54:41 +01:00
parent cf2e09d102
commit be3c250e3e

View File

@ -498,7 +498,7 @@ def download_xlsx_file():
if old_file_path.exists():
if hash_excel(new_file_path) == hash_excel(old_file_path):
print("Downloaded file is identical. Deleting new file: " + str(new_file_path))
print("Downloaded file is identical.")
new_file_path.unlink()
if json_file_path.exists():
print("Skipping parse")
@ -513,7 +513,7 @@ def download_xlsx_file():
new_file_path.rename(old_file_path)
else:
print("No cached xlsx - forcing rebuild: " + str(new_file_path) + " renamed to " + str(old_file_path))
print("No cached xlsx - forcing rebuild")
new_file_path.rename(old_file_path)
def transfer_xlsx_to_dict():
@ -564,7 +564,7 @@ def transfer_xlsx_to_dict():
}
def test_if_release():
if (BUILD_TYPE == 'release'):
print("\tis release. Saving text file as release.xlsx. Copying " + str(old_file_path) + " to " + str(release_file_path))
print("\tis release. Saving text file as release.xlsx")
shutil.copy(old_file_path, release_file_path)
def generate_header_file():