summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--bazarr/subtitles/utils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bazarr/subtitles/utils.py b/bazarr/subtitles/utils.py
index 06f7b225b..cfa96e1ed 100644
--- a/bazarr/subtitles/utils.py
+++ b/bazarr/subtitles/utils.py
@@ -39,6 +39,8 @@ def get_video(path, title, sceneName, providers=None, media_type="movie"):
logging.debug(f'BAZARR guessing video object using scene name: {scenename_with_extension}')
scenename_video = parse_video(scenename_with_extension, hints=hints, dry_run=True)
refine_video_with_scenename(initial_video=video, scenename_video=scenename_video)
+ logging.debug('BAZARR resulting video object once refined using scene name: %s',
+ json.dumps(vars(video), cls=GuessitEncoder, indent=4, ensure_ascii=False))
video.original_name = os.path.basename(path)
video.original_path = path