youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 26844eb57b398cc71b2f58d2a94494a976c3aff2
parent a7732b672e4d97435a99be4e54584a5ed1bb87bb
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 17 Jan 2014 03:10:54 +0100

[franceinter] Remove superfluous whitespace

Diffstat:
Myoutube_dl/extractor/franceinter.py | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/youtube_dl/extractor/franceinter.py b/youtube_dl/extractor/franceinter.py @@ -20,7 +20,7 @@ class FranceInterIE(InfoExtractor): def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') - + webpage = self._download_webpage(url, video_id) title = self._html_search_regex( r'<span class="roll_overflow">(.*?)</span></h1>', webpage, 'title') @@ -36,5 +36,3 @@ class FranceInterIE(InfoExtractor): }], 'title': title, } - - - \ No newline at end of file