summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohny Mo Swag <johnymo@me.com>2013-03-08 22:39:45 -0800
committerJohny Mo Swag <johnymo@me.com>2013-03-08 22:39:45 -0800
commit3b221c540640f7df9e4dc453a736dd25fe2505c4 (patch)
tree928ccd97d786c6cb46947cf2ca747b0beb4df22d
parent64c78d50ccf05f34e27b652530fc8b702aa54122 (diff)
downloadyoutube-dl-3b221c540640f7df9e4dc453a736dd25fe2505c4.tar.gz
youtube-dl-3b221c540640f7df9e4dc453a736dd25fe2505c4.tar.xz
youtube-dl-3b221c540640f7df9e4dc453a736dd25fe2505c4.zip
removed str used for other project.
-rwxr-xr-xyoutube_dl/InfoExtractors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index f69bad4f3..c2e3c8983 100755
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -3661,7 +3661,7 @@ class WorldStarHipHopIE(InfoExtractor):
     def _real_extract(self, url):
         _src_url = r"""(http://hw-videos.*(?:mp4|flv))"""
 
-        webpage_src = compat_urllib_request.urlopen(str(url)).read()
+        webpage_src = compat_urllib_request.urlopen(url).read()
         webpage_src = webpage_src.decode('utf-8')
 
         mobj = re.search(_src_url, webpage_src)