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