diff options
author | Johny Mo Swag <johnymo@me.com> | 2013-03-08 22:39:45 -0800 |
---|---|---|
committer | Johny Mo Swag <johnymo@me.com> | 2013-03-08 22:39:45 -0800 |
commit | 3b221c540640f7df9e4dc453a736dd25fe2505c4 (patch) | |
tree | 928ccd97d786c6cb46947cf2ca747b0beb4df22d /youtube_dl/InfoExtractors.py | |
parent | 64c78d50ccf05f34e27b652530fc8b702aa54122 (diff) |
removed str used for other project.
Diffstat (limited to 'youtube_dl/InfoExtractors.py')
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 2 |
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) |