diff --git a/VERSION b/VERSION index c1adffa0..ae4e7170 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.16.5-develop69 +1.16.5-develop70 diff --git a/modules/tmdb.py b/modules/tmdb.py index b0ea1fbf..75e5b6d6 100644 --- a/modules/tmdb.py +++ b/modules/tmdb.py @@ -124,7 +124,7 @@ class TMDbMovie(TMDBObj): try: return self._tmdb.TMDb.movie(self.tmdb_id, partial="external_ids,keywords") except NotFound: - Failed(f"TMDb Error: No Movie found for TMDb ID {self.tmdb_id}") + raise Failed(f"TMDb Error: No Movie found for TMDb ID {self.tmdb_id}") class TMDbShow(TMDBObj): @@ -158,7 +158,7 @@ class TMDbShow(TMDBObj): try: return self._tmdb.TMDb.tv_show(self.tmdb_id, partial="external_ids,keywords") except NotFound: - Failed(f"TMDb Error: No Show found for TMDb ID {self.tmdb_id}") + raise Failed(f"TMDb Error: No Show found for TMDb ID {self.tmdb_id}") class TMDb: def __init__(self, config, params):