diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-09-11 12:04:27 +0200 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-09-11 12:04:27 +0200 | 
| commit | 22c8b525458c8203c0709a523c646b8d152f03b0 (patch) | |
| tree | b3f78ac09cc2bf6ca846831104a30480b16f3c47 /devscripts/gh-pages/update-sites.py | |
| parent | 1f7dc42cd0d99c1349205cbb89a2306b7aa057a2 (diff) | |
In the supported sites page, sort the extractors in case insensitive
Diffstat (limited to 'devscripts/gh-pages/update-sites.py')
| -rwxr-xr-x | devscripts/gh-pages/update-sites.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/devscripts/gh-pages/update-sites.py b/devscripts/gh-pages/update-sites.py index fa4bb2beb..33f242480 100755 --- a/devscripts/gh-pages/update-sites.py +++ b/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) | 
