]> jfr.im git - yt-dlp.git/blobdiff - devscripts/gh-pages/update-sites.py
Merge branch 'fix-mitele' of https://github.com/DjMoren/youtube-dl
[yt-dlp.git] / devscripts / gh-pages / update-sites.py
index d3ef5f0b50daa56513118f55d5b636e5f46552a0..38acb5d9a2df82b9b5e892bb85d02b416f15c36c 100755 (executable)
@@ -5,10 +5,10 @@
 import os
 import textwrap
 
-# We must be able to import youtube_dl
-sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
+# We must be able to import youtube_dlc
+sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
 
-import youtube_dl
+import youtube_dlc
 
 
 def main():
@@ -16,7 +16,7 @@ def main():
         template = tmplf.read()
 
     ie_htmls = []
-    for ie in youtube_dl.list_extractors(age_limit=None):
+    for ie in youtube_dlc.list_extractors(age_limit=None):
         ie_html = '<b>{}</b>'.format(ie.IE_NAME)
         ie_desc = getattr(ie, 'IE_DESC', None)
         if ie_desc is False:
@@ -32,5 +32,6 @@ def main():
     with open('supportedsites.html', 'w', encoding='utf-8') as sitesf:
         sitesf.write(template)
 
+
 if __name__ == '__main__':
     main()