about summary refs log tree commit diff
diff options
context:
space:
mode:
authorM.Yasoob Khalid <yasoob.khld@gmail.com>2013-07-18 12:37:02 +0500
committerM.Yasoob Khalid <yasoob.khld@gmail.com>2013-07-18 12:37:02 +0500
commit233ad24ecf99e5a44541536e3d3352f6f7ebb526 (patch)
treead8bac71c85618bd2a3c2eeecbadb98794e438cf
parentc4949c50f97e1f8f9eaa6b9af4b998592c4a4975 (diff)
downloadyoutube-dl-233ad24ecf99e5a44541536e3d3352f6f7ebb526.tar.gz
youtube-dl-233ad24ecf99e5a44541536e3d3352f6f7ebb526.tar.xz
youtube-dl-233ad24ecf99e5a44541536e3d3352f6f7ebb526.zip
corrected a typo and added myself to travis notifications.
-rw-r--r--.travis.yml1
-rw-r--r--youtube_dl/extractor/exfm.py8
2 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 7f1fa8a3c..45b71f11b 100644
--- a/.travis.yml
+++ b/.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"
diff --git a/youtube_dl/extractor/exfm.py b/youtube_dl/extractor/exfm.py
index 777bc4dce..0a80638d3 100644
--- a/youtube_dl/extractor/exfm.py
+++ b/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'],