]> git.bitcoin.ninja Git - youtube-dl/blobdiff - youtube_dl/InfoExtractors.py
removed str used for other project.
[youtube-dl] / youtube_dl / InfoExtractors.py
index f69bad4f3a77d49be2d8b9cac3c6c256f4ee9898..c2e3c8983cb7490615253b7b04a6cd744ba6c615 100755 (executable)
@@ -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)