From 71a45f751d22612d1e88c3b9a2f5eda5cc133a0a Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Sat, 20 Mar 2021 18:09:41 -0400 Subject: [PATCH] fix for #135 --- README.md | 2 +- modules/builder.py | 2 +- plex_meta_manager.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7e73e8e7..6fac7d71 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Plex Meta Manager -#### Version 1.5.1-Beta.1 +#### Version 1.5.1-Beta.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/modules/builder.py b/modules/builder.py index 94fe943f..1427efe8 100644 --- a/modules/builder.py +++ b/modules/builder.py @@ -953,7 +953,7 @@ class CollectionBuilder: logger.warning(f"No Folder: {os.path.join(path, folder)}") def set_image(image_method, images, is_background=False): - if image_method in ['file_poster', 'asset_directory']: + if image_method in ["file_poster", "file_background", "asset_directory"]: if is_background: collection.uploadArt(filepath=images[image_method]) else: collection.uploadPoster(filepath=images[image_method]) image_location = "File" diff --git a/plex_meta_manager.py b/plex_meta_manager.py index 27719302..98463928 100644 --- a/plex_meta_manager.py +++ b/plex_meta_manager.py @@ -87,7 +87,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.5.1-Beta.1 ")) +logger.info(util.get_centered_text(" Version: 1.5.1-Beta.2 ")) util.separator() if my_tests: