summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2012-12-07 00:57:06 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2012-12-07 00:57:06 +0100
commitf9b2f2b955cb94053e60bdd13b5d813ff76ae59f (patch)
treebf9c3fd65affc8ba2729354ec38b8b5949c870a9
parent633b4a5ff6bf100659695f9f932dd000919a2630 (diff)
downloadyoutube-dl-f9b2f2b955cb94053e60bdd13b5d813ff76ae59f.tar.gz
youtube-dl-f9b2f2b955cb94053e60bdd13b5d813ff76ae59f.tar.xz
youtube-dl-f9b2f2b955cb94053e60bdd13b5d813ff76ae59f.zip
Correct accidental rename
-rw-r--r--youtube_dl/InfoExtractors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index 71b6a136e..14c32fe67 100644
--- 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))