浏览代码

[franceinter] Remove superfluous whitespace

Philipp Hagemeister 11 年之前
父节点
当前提交
26844eb57b
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      youtube_dl/extractor/franceinter.py

+ 1 - 3
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,
         }
-
-