From 372c5e65b522a5b64f70baefadcf9a10277b215b Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Sun, 21 Feb 2021 21:13:27 -0500 Subject: [PATCH] v1.2.2 fix for #53 --- README.md | 3 ++- modules/builder.py | 2 +- plex_meta_manager.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1d91b55c..2721922f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Plex Meta Manager -#### Version 1.2.1 +#### Version 1.2.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. @@ -19,4 +19,5 @@ The script is designed to work with most Metadata agents including the new Plex * If you have a configuration question visit the [Discussions](https://github.com/meisnate12/Plex-Meta-Manager/discussions) * To see user submitted Metadata configuration files and you could even add your own go to the [Plex Meta Manager Configs](https://github.com/meisnate12/Plex-Meta-Manager-Configs) * Pull Request are welcome but please submit them to the develop branch +* If you wish to contribute to the Wiki please fork and send a pull request on the [Plex Meta Manager Wiki Repository](https://github.com/meisnate12/Plex-Meta-Manager-Wiki) * [Buy Me a Pizza](https://www.buymeacoffee.com/meisnate12) diff --git a/modules/builder.py b/modules/builder.py index 82c5dcc9..4f953a6a 100644 --- a/modules/builder.py +++ b/modules/builder.py @@ -655,7 +655,7 @@ class CollectionBuilder: logger.error(e) logger.info("{} Show{} Missing".format(len(missing_shows_with_names), "s" if len(missing_shows_with_names) > 1 else "")) if self.details["save_missing"] is True: - self.library.add_missing(c, missing_shows_with_names, False) + self.library.add_missing(collection_name, missing_shows_with_names, False) if self.do_arr and self.library.Sonarr: self.library.Sonarr.add_tvdb([missing_id for title, missing_id in missing_shows_with_names], tag=self.details["arr_tag"]) diff --git a/plex_meta_manager.py b/plex_meta_manager.py index 346278a0..5d3341d4 100644 --- a/plex_meta_manager.py +++ b/plex_meta_manager.py @@ -59,7 +59,7 @@ logger.info(util.get_centered_text("| |_) | |/ _ \ \/ / | |\/| |/ _ \ __/ _` | | logger.info(util.get_centered_text("| __/| | __/> < | | | | __/ || (_| | | | | | (_| | | | | (_| | (_| | __/ | ")) logger.info(util.get_centered_text("|_| |_|\___/_/\_\ |_| |_|\___|\__\__,_| |_| |_|\__,_|_| |_|\__,_|\__, |\___|_| ")) logger.info(util.get_centered_text(" |___/ ")) -logger.info(util.get_centered_text(" Version: 1.2.1 ")) +logger.info(util.get_centered_text(" Version: 1.2.2 ")) util.seperator() if args.tests: