diff options
author | Sergey M․ <dstftw@gmail.com> | 2019-03-09 19:14:41 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2019-03-11 04:00:54 +0700 |
commit | 067aa17edf5a46a8cbc4d6b90864eddf051fa2bc (patch) | |
tree | 8555851d92287bbd14261663911804c605909b37 /youtube_dl/extractor/crunchyroll.py | |
parent | 276550371313dbfe7d94ceb294bd1284c1e7c404 (diff) | |
download | youtube-dl-067aa17edf5a46a8cbc4d6b90864eddf051fa2bc.tar.gz youtube-dl-067aa17edf5a46a8cbc4d6b90864eddf051fa2bc.tar.bz2 youtube-dl-067aa17edf5a46a8cbc4d6b90864eddf051fa2bc.zip |
Start moving to ytdl-org
Diffstat (limited to 'youtube_dl/extractor/crunchyroll.py')
-rw-r--r-- | youtube_dl/extractor/crunchyroll.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/crunchyroll.py b/youtube_dl/extractor/crunchyroll.py index 5948154f8..588c3c71b 100644 --- a/youtube_dl/extractor/crunchyroll.py +++ b/youtube_dl/extractor/crunchyroll.py @@ -107,7 +107,7 @@ class CrunchyrollBaseIE(InfoExtractor): request = (url_or_request if isinstance(url_or_request, compat_urllib_request.Request) else sanitized_Request(url_or_request)) # Accept-Language must be set explicitly to accept any language to avoid issues - # similar to https://github.com/rg3/youtube-dl/issues/6797. + # similar to https://github.com/ytdl-org/youtube-dl/issues/6797. # Along with IP address Crunchyroll uses Accept-Language to guess whether georestriction # should be imposed or not (from what I can see it just takes the first language # ignoring the priority and requires it to correspond the IP). By the way this causes @@ -124,7 +124,7 @@ class CrunchyrollBaseIE(InfoExtractor): # > This content may be inappropriate for some people. # > Are you sure you want to continue? # since it's not disabled by default in crunchyroll account's settings. - # See https://github.com/rg3/youtube-dl/issues/7202. + # See https://github.com/ytdl-org/youtube-dl/issues/7202. qs['skip_wall'] = ['1'] return compat_urlparse.urlunparse( parsed_url._replace(query=compat_urllib_parse_urlencode(qs, True))) |