Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/development' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
halali committed Feb 3, 2019
2 parents 0cd1d2c + 4f7d73d commit 18624f2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bazarr/get_subtitle.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ def get_video(path, title, sceneName, use_scenename, providers=None, media_type=
video.used_scene_name = dont_use_actual_file
video.original_name = original_name
video.original_path = original_path
refine_video(video)
try:
refine_video(video)
except Exception as e:
logging.debug('BAZARR Error trying to refine this file: ' + path)
pass
return video

except:
Expand Down

0 comments on commit 18624f2

Please sign in to comment.