Always print summary from replace_files

This commit is contained in:
Keith Edmunds 2022-08-23 10:38:25 +01:00
parent 688267834d
commit 2b48e889a5

View File

@ -35,8 +35,8 @@ from typing import List
# ###################### SETTINGS #########################
process_multiple_matches = True
do_processing = True
process_no_matches = True
do_processing = False
process_no_matches = False
# #########################################################
@ -195,6 +195,13 @@ def main():
print(" \n".join(no_match))
print()
print(f"Name and tags match ({len(name_and_tags)}):")
print(f"Name but not tags match ({len(name_not_tags)}):")
print(f"Tags but not name match ({len(tags_not_name)}):")
print(f"Multiple similar names ({len(multiple_similar)}):")
print(f"Possibles: ({len(possibles)}):")
print(f"No match ({len(no_match)}):")
def process_track(src, dst, title, artist, bitrate):