Always print summary from replace_files
This commit is contained in:
parent
688267834d
commit
2b48e889a5
@ -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):
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user