diff --git a/modules/config.py b/modules/config.py index 9297254a..afda33b2 100644 --- a/modules/config.py +++ b/modules/config.py @@ -434,7 +434,7 @@ class Config: except Failed as e: logger.error(e) logger.info("") util.seperator("{} Library {}Collections".format(library.name, "Test " if test else "")) - collections = (library.collections.keys() & util.get_list(requested_collections)) if requested_collections else library.collections + collections = {c: library.collections[c] for c in util.get_list(requested_collections) if c in library.collections} if requested_collections else library.collections if collections: logger.info("") util.seperator("Mapping {} Library".format(library.name))