浏览代码

Correct accidental rename

Philipp Hagemeister 12 年之前
父节点
当前提交
f9b2f2b955
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      youtube_dl/InfoExtractors.py

+ 1 - 1
youtube_dl/InfoExtractors.py

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