From 233ad24ecf99e5a44541536e3d3352f6f7ebb526 Mon Sep 17 00:00:00 2001 From: "M.Yasoob Khalid" Date: Thu, 18 Jul 2013 12:37:02 +0500 Subject: corrected a typo and added myself to travis notifications. --- youtube_dl/extractor/exfm.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'youtube_dl/extractor/exfm.py') 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'], -- cgit v1.2.3