lower
This commit is contained in:
parent
423957a162
commit
b933138b21
1 changed files with 2 additions and 2 deletions
|
|
@ -99,12 +99,12 @@ class BaseEntryVariables:
|
||||||
Returns
|
Returns
|
||||||
-------
|
-------
|
||||||
str
|
str
|
||||||
The ytdl extractor name
|
The ytdl extractor name used in the download archive
|
||||||
"""
|
"""
|
||||||
# pylint: disable=line-too-long
|
# pylint: disable=line-too-long
|
||||||
# Taken from https://github.com/yt-dlp/yt-dlp/blob/e6ab678e36c40ded0aae305bbb866cdab554d417/yt_dlp/YoutubeDL.py#L3514
|
# Taken from https://github.com/yt-dlp/yt-dlp/blob/e6ab678e36c40ded0aae305bbb866cdab554d417/yt_dlp/YoutubeDL.py#L3514
|
||||||
# pylint: enable=line-too-long
|
# pylint: enable=line-too-long
|
||||||
return self.kwargs_get("extractor_key") or self.kwargs(IE_KEY)
|
return str(self.kwargs_get("extractor_key") or self.kwargs(IE_KEY)).lower()
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def epoch(self: "BaseEntry") -> int:
|
def epoch(self: "BaseEntry") -> int:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue