From 76e437abdc36bc48390c3cbccbe014436ecf6252 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Fri, 26 Mar 2021 12:22:25 -0400 Subject: [PATCH 1/2] additional fix #139 --- modules/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/builder.py b/modules/builder.py index 13452b1d..65c32d5f 100644 --- a/modules/builder.py +++ b/modules/builder.py @@ -450,7 +450,7 @@ class CollectionBuilder: self.methods.append((method_name, [new_dictionary])) elif method_name == "plex_search": searches = {} - for search_name, search_data in method_data: + for search_name, search_data in method_data.items(): search, modifier = os.path.splitext(str(search_name).lower()) if search in util.method_alias: search = util.method_alias[search] From 54f3281410aeaebc2f3894da162873d6ccc31f8c Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Fri, 26 Mar 2021 12:23:21 -0400 Subject: [PATCH 2/2] v1.6.2 --- README.md | 2 +- plex_meta_manager.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f3f56159..c3e58e0e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Plex Meta Manager -#### Version 1.6.1 +#### Version 1.6.2 The original concept for Plex Meta Manager is [Plex Auto Collections](https://github.com/mza921/Plex-Auto-Collections), but this is rewritten from the ground up to be able to include a scheduler, metadata edits, multiple libraries, and logging. Plex Meta Manager is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki. Some collection examples that the script can automatically build and update daily include Plex Based Searches like actor, genre, or studio collections or Collections based on TMDb, IMDb, Trakt, TVDb, AniDB, or MyAnimeList lists and various other services. diff --git a/plex_meta_manager.py b/plex_meta_manager.py index 00b986f8..df700524 100644 --- a/plex_meta_manager.py +++ b/plex_meta_manager.py @@ -87,7 +87,7 @@ util.centered("| |_) | |/ _ \\ \\/ / | |\\/| |/ _ \\ __/ _` | | |\\/| |/ _` | '_ util.centered("| __/| | __/> < | | | | __/ || (_| | | | | | (_| | | | | (_| | (_| | __/ | ") util.centered("|_| |_|\\___/_/\\_\\ |_| |_|\\___|\\__\\__,_| |_| |_|\\__,_|_| |_|\\__,_|\\__, |\\___|_| ") util.centered(" |___/ ") -util.centered(" Version: 1.6.1 ") +util.centered(" Version: 1.6.2 ") util.separator() if my_tests: