diff options
author | Nicolas Évrard <nicoe@openhex.org> | 2014-04-28 23:19:56 +0200 |
---|---|---|
committer | Nicolas Évrard <nicoe@openhex.org> | 2014-04-28 23:19:56 +0200 |
commit | 98b7d476d92f7b83c5862395453a4ba47771d890 (patch) | |
tree | 9fa05f00eafd5e4e962ee7e8628eced020780815 /youtube_dl | |
parent | 201e3c99b9f02afbee47512ce4ea2474d22f81d6 (diff) |
[RTBFVideo] Remove useless print statement
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/rtbf.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/extractor/rtbf.py b/youtube_dl/extractor/rtbf.py index b70c36eaa..544539665 100644 --- a/youtube_dl/extractor/rtbf.py +++ b/youtube_dl/extractor/rtbf.py @@ -29,7 +29,6 @@ class RTBFVideoIE(InfoExtractor): title = self._html_search_regex( r'<meta property="og:description" content="([^"]*)"', webpage, 'title', mobj.group('title')) - print title iframe_url = self._html_search_regex(r'<iframe [^>]*src="([^"]+)"', webpage, 'iframe') |