diff options
author | morpheus65535 <[email protected]> | 2021-01-18 23:49:51 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2021-01-18 23:49:51 -0500 |
commit | 22cd45bc412e87d9b7aae412bc05c2a771d62e3e (patch) | |
tree | 965c9f029dee76b16f75ad15ed42e25cdb5e95fe /libs | |
parent | 240a3759cf131fdee8767871ee68356785ff4f9e (diff) | |
download | bazarr-22cd45bc412e87d9b7aae412bc05c2a771d62e3e.tar.gz bazarr-22cd45bc412e87d9b7aae412bc05c2a771d62e3e.zip |
Languages profiles (#1232)
Implementing the languages profiles functionality.
Diffstat (limited to 'libs')
-rw-r--r-- | libs/subliminal_patch/core.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libs/subliminal_patch/core.py b/libs/subliminal_patch/core.py index 55bbb2e07..0dc7d6ecd 100644 --- a/libs/subliminal_patch/core.py +++ b/libs/subliminal_patch/core.py @@ -823,9 +823,8 @@ def get_subtitle_path(video_path, language=None, extension='.srt', forced_tag=Fa if forced_tag: tags.append("forced") - # fixme when we'll be ready to add .hi to filename when saving a subtitles - # elif hi_tag: - # tags.append("hi") + elif hi_tag: + tags.append("hi") if language: subtitle_root += '.' + str(language.basename) |