mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-18 08:16:10 +00:00
Update youtube_dl/extractor/tvp.py
Add `txt_or_none()` shim
This commit is contained in:
parent
6e827118cb
commit
4891480197
1 changed files with 3 additions and 0 deletions
|
@ -35,6 +35,9 @@ if not hasattr(InfoExtractor, '_match_valid_url'):
|
|||
RegexNotFoundError,
|
||||
)
|
||||
|
||||
def txt_or_none(v, default=None):
|
||||
return default if v is None else (compat_str(v).strip() or default)
|
||||
|
||||
BaseIE = InfoExtractor
|
||||
|
||||
class InfoExtractor(BaseIE):
|
||||
|
|
Loading…
Reference in a new issue