mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-10 09:02:44 +08:00
no log: update fese
This commit is contained in:
parent
4e50dc29a4
commit
fdefb85b1f
3 changed files with 4 additions and 3 deletions
|
@ -4,4 +4,4 @@
|
|||
from .container import FFprobeVideoContainer
|
||||
from .stream import FFprobeSubtitleStream
|
||||
|
||||
__version__ = "0.2.7"
|
||||
__version__ = "0.2.8"
|
||||
|
|
|
@ -57,8 +57,8 @@ class FFprobeSubtitleDisposition:
|
|||
|
||||
def language_kwargs(self):
|
||||
return {
|
||||
"hi": self._content_type == "hearing_impaired",
|
||||
"forced": self._content_type == "forced",
|
||||
"hi": self._content_type == "hearing_impaired" or self.hearing_impaired,
|
||||
"forced": self._content_type == "forced" or self.forced,
|
||||
}
|
||||
|
||||
def __str__(self):
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
class FeseError(Exception):
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue