diff --git a/modules/plex.py b/modules/plex.py index f51e3381..f172677d 100644 --- a/modules/plex.py +++ b/modules/plex.py @@ -786,10 +786,8 @@ class PlexAPI: match = re.search("[Ss]\\d+[Ee]\\d+", episode_str) if match: output = match.group(0)[1:].split("E" if "E" in match.group(0) else "e") - season_str = output[0] - episode_str = output[1] - season_id = int(season_str) - episode_id = int(episode_str) + season_id = int(output[0]) + episode_id = int(output[1]) logger.info(f"Updating episode S{episode_id}E{season_id} of {mapping_name}...") try: episode = item.episode(season=season_id, episode=episode_id) except NotFound: logger.error(f"Metadata Error: episode {episode_id} of season {season_id} not found") diff --git a/plex_meta_manager.py b/plex_meta_manager.py index ed02a87d..fa1e75d6 100644 --- a/plex_meta_manager.py +++ b/plex_meta_manager.py @@ -89,7 +89,7 @@ util.centered("| |_) | |/ _ \\ \\/ / | |\\/| |/ _ \\ __/ _` | | |\\/| |/ _` | '_ util.centered("| __/| | __/> < | | | | __/ || (_| | | | | | (_| | | | | (_| | (_| | __/ | ") util.centered("|_| |_|\\___/_/\\_\\ |_| |_|\\___|\\__\\__,_| |_| |_|\\__,_|_| |_|\\__,_|\\__, |\\___|_| ") util.centered(" |___/ ") -util.centered(" Version: 1.7.2-Beta10 ") +util.centered(" Version: 1.7.2-Beta11 ") util.separator() if my_tests: @@ -97,10 +97,10 @@ if my_tests: sys.exit(0) def start(config_path, is_test, daily, collections_to_run, resume_from): - if daily: start_type = "Daily " - elif is_test: start_type = "Test " - elif collections_to_run: start_type = "Collections " - else: start_type = "" + if daily: start_type = "Daily " + elif is_test: start_type = "Test " + elif collections_to_run: start_type = "Collections " + else: start_type = "" start_time = datetime.now() util.separator(f"Starting {start_type}Run") try: