浏览代码

corrected a typo and added myself to travis notifications.

M.Yasoob Khalid 12 年之前
父节点
当前提交
233ad24ecf
共有 2 个文件被更改,包括 5 次插入4 次删除
  1. 1 0
      .travis.yml
  2. 4 4
      youtube_dl/extractor/exfm.py

+ 1 - 0
.travis.yml

@@ -9,6 +9,7 @@ notifications:
     - filippo.valsorda@gmail.com
     - phihag@phihag.de
     - jaime.marquinez.ferrandiz+travis@gmail.com
+    - yasoob.khld@gmail.com
 #  irc:
 #    channels:
 #      - "irc.freenode.org#youtube-dl"

+ 4 - 4
youtube_dl/extractor/exfm.py

@@ -21,9 +21,9 @@ class ExfmIE(InfoExtractor):
 
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)
-        video_id = mobj.group(1)
-        info_url = "http://ex.fm/api/v3/song/%s" %(video_id)
-        webpage = self._download_webpage(info_url, video_id)
+        song_id = mobj.group(1)
+        info_url = "http://ex.fm/api/v3/song/%s" %(song_id)
+        webpage = self._download_webpage(info_url, song_id)
         info = json.loads(webpage)
         song_url = re.match(self._SOUNDCLOUD_URL_,info['song']['url'])
         if song_url is not None:
@@ -31,7 +31,7 @@ class ExfmIE(InfoExtractor):
         else:
         	song_url = info['song']['url']
         return [{
-            'id':          video_id,
+            'id':          song_id,
             'url':         song_url,
             'ext':         'mp3',
             'title':       info['song']['title'],