diff options
author | redglory <[email protected]> | 2021-11-01 12:22:15 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-11-01 08:22:15 -0400 |
commit | 0f31c9858b687fe9950ba5145ff3aa74076ef25f (patch) | |
tree | 04b75f81b8ed96f2ef8f5c95ba8065065bb1a886 | |
parent | f53ef40d57d4cf23fcf4410028a77bea318b6415 (diff) | |
download | bazarr-0f31c9858b687fe9950ba5145ff3aa74076ef25f.tar.gz bazarr-0f31c9858b687fe9950ba5145ff3aa74076ef25f.zip |
no log: other improvement to LegendasDivxv1.0.1-beta.9
-rw-r--r-- | libs/subliminal_patch/providers/legendasdivx.py | 4 |
1 files changed, 3 insertions, 1 deletions
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) |