mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-17 15:43:28 +02:00
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:
committed by
GitHub
parent
96b84d45db
commit
5db60141bb
@@ -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]:
|
||||
|
||||
Reference in New Issue
Block a user