[81] separate mass_collection_mode displays

This commit is contained in:
meisnate12 2022-02-22 15:04:04 -05:00
parent a3dd3c09ee
commit f7dbd54fe2
2 changed files with 6 additions and 2 deletions

View file

@ -1 +1 @@
1.15.1-develop80
1.15.1-develop81

View file

@ -703,7 +703,11 @@ def library_operations(config, library):
logger.info(f"{col.title} Deleted")
elif col.title not in library.collections:
unmanaged_collections.append(col)
if library.mass_collection_mode:
if library.mass_collection_mode:
logger.info("")
logger.separator(f"Mass Collection Mode for {library.name} Library", space=False, border=False)
logger.info("")
for col in library.get_all_collections():
library.collection_mode_query(col, library.mass_collection_mode)
if library.show_unmanaged and len(unmanaged_collections) > 0: