From 4c2ee97f34fc4e669990a8c195e9bca1d268ee3e Mon Sep 17 00:00:00 2001 From: rouggy Date: Wed, 8 Dec 2021 13:57:06 +0100 Subject: [PATCH] update --- plexAutoCollectionUpdater.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plexAutoCollectionUpdater.py b/plexAutoCollectionUpdater.py index d09afb4..c1832d8 100644 --- a/plexAutoCollectionUpdater.py +++ b/plexAutoCollectionUpdater.py @@ -84,5 +84,5 @@ with open(Config.PlexAutoCollectionConfigFilePath, 'r') as f: except yaml.YAMLError as exc: print(exc) -for collection, movies in currentYaml.items(): - print(movies) \ No newline at end of file +for collection in currentYaml.items(): + print(collection.keys) \ No newline at end of file