diff options
author | pukkandan <pukkandan@gmail.com> | 2021-02-20 03:03:17 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-02-20 03:14:01 +0530 |
commit | 4524baf056c1611cea44ab5ebeb6cd8da82da6da (patch) | |
tree | 7dab233604dff3f3d1f9cf45f6de97311d63f5f2 /ytdlp_plugins/extractor/sample.py | |
parent | bc2ca1bb75d586b75d83a6f60b680ee07227ff28 (diff) | |
download | hypervideo-pre-4524baf056c1611cea44ab5ebeb6cd8da82da6da.tar.lz hypervideo-pre-4524baf056c1611cea44ab5ebeb6cd8da82da6da.tar.xz hypervideo-pre-4524baf056c1611cea44ab5ebeb6cd8da82da6da.zip |
Release 2021.02.19
Diffstat (limited to 'ytdlp_plugins/extractor/sample.py')
-rw-r--r-- | ytdlp_plugins/extractor/sample.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ytdlp_plugins/extractor/sample.py b/ytdlp_plugins/extractor/sample.py index 41954b6be..321f3fed1 100644 --- a/ytdlp_plugins/extractor/sample.py +++ b/ytdlp_plugins/extractor/sample.py @@ -1,8 +1,12 @@ from __future__ import unicode_literals +# Don't use relative imports from youtube_dlc.extractor.common import InfoExtractor +# See https://github.com/ytdl-org/youtube-dl#adding-support-for-a-new-site +# for instuctions on making extractors + class SamplePluginIE(InfoExtractor): _WORKING = False IE_DESC = False |