youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit f9b2f2b955cb94053e60bdd13b5d813ff76ae59f
parent 633b4a5ff6bf100659695f9f932dd000919a2630
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri,  7 Dec 2012 00:57:06 +0100

Correct accidental rename

Diffstat:
Myoutube_dl/InfoExtractors.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py @@ -2829,7 +2829,7 @@ class SoundcloudIE(InfoExtractor): url = 'https://soundcloud.com/%s/%s' % (uploader, slug_title) request = compat_urllib_request.Request(url) try: - urlo = compat_urllib_request.urlopen(request).read() + webpage_bytes = compat_urllib_request.urlopen(request).read() webpage = webpage_bytes.decode('utf-8') except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err: self._downloader.trouble(u'ERROR: unable to download video webpage: %s' % compat_str(err))