From 0f31c9858b687fe9950ba5145ff3aa74076ef25f Mon Sep 17 00:00:00 2001 From: redglory Date: Mon, 1 Nov 2021 12:22:15 +0000 Subject: [PATCH] no log: other improvement to LegendasDivx --- libs/subliminal_patch/providers/legendasdivx.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/subliminal_patch/providers/legendasdivx.py b/libs/subliminal_patch/providers/legendasdivx.py index cf705a017..5d1ad8825 100644 --- a/libs/subliminal_patch/providers/legendasdivx.py +++ b/libs/subliminal_patch/providers/legendasdivx.py @@ -437,7 +437,9 @@ class LegendasdivxProvider(Provider): if subtitle.video.episode != _guess['episode'] or subtitle.video.season != _guess['season']: logger.debug('Legendasdivx.pt :: subtitle does not match video, skipping') continue - + else: + logger.debug('Legendasdivx.pt :: no "season" and/or "episode" on "_guess" , skipping') + continue matches = set() matches |= guess_matches(subtitle.video, _guess) logger.debug('Legendasdivx.pt :: sub matches: %s', matches)