소스 검색

In the supported sites page, sort the extractors in case insensitive

Jaime Marquínez Ferrándiz 12 년 전
부모
커밋
22c8b52545
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      devscripts/gh-pages/update-sites.py

+ 1 - 1
devscripts/gh-pages/update-sites.py

@@ -14,7 +14,7 @@ def main():
         template = tmplf.read()
 
     ie_htmls = []
-    for ie in sorted(youtube_dl.gen_extractors(), key=lambda i: i.IE_NAME):
+    for ie in sorted(youtube_dl.gen_extractors(), key=lambda i: i.IE_NAME.lower()):
         ie_html = '<b>{}</b>'.format(ie.IE_NAME)
         try:
             ie_html += ': {}'.format(ie.IE_DESC)