summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-01-17 03:10:54 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-01-17 03:10:54 +0100
commit26844eb57b398cc71b2f58d2a94494a976c3aff2 (patch)
tree651a848d1825797856e2d9bf17ec74f9128bcaef
parenta7732b672e4d97435a99be4e54584a5ed1bb87bb (diff)
downloadyoutube-dl-26844eb57b398cc71b2f58d2a94494a976c3aff2.tar.gz
youtube-dl-26844eb57b398cc71b2f58d2a94494a976c3aff2.tar.xz
youtube-dl-26844eb57b398cc71b2f58d2a94494a976c3aff2.zip
[franceinter] Remove superfluous whitespace
-rw-r--r--youtube_dl/extractor/franceinter.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/extractor/franceinter.py b/youtube_dl/extractor/franceinter.py
index 7728410da..deb1b0b9d 100644
--- 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