Fix bug by typo in jackett log message (#387)

fix typo in the `search_season` function log, which causes an error when searching for torrents.
This commit is contained in:
Juan David Bermudez Celedon
2026-02-01 12:09:18 -05:00
committed by GitHub
parent 96b84d45db
commit 5db60141bb

View File

@@ -74,7 +74,7 @@ class Jackett(GenericIndexer, TorznabMixin):
def search_season(
self, query: str, show: Show, season_number: int
) -> list[IndexerQueryResult]:
log.debug(f"Searching for season {season_number} of show {show.title}")
log.debug(f"Searching for season {season_number} of show {show.name}")
return self.search(query=query, is_tv=True)
def search_movie(self, query: str, movie: Movie) -> list[IndexerQueryResult]: