mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
fix for --collections
This commit is contained in:
parent
f1b6e54083
commit
06671fc912
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue