[toutv] Fix a typo
authorPhilipp Hagemeister <phihag@phihag.de>
Fri, 22 Nov 2013 16:17:55 +0000 (17:17 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Fri, 22 Nov 2013 16:18:03 +0000 (17:18 +0100)
youtube_dl/extractor/soundcloud.py
youtube_dl/extractor/toutv.py

index 5544325b5e301d199635d132b4f6d09c26f65bb8..67b2dff9c9ec431bb7ddd501bb804f6cc572cb61 100644 (file)
@@ -113,7 +113,7 @@ class SoundcloudIE(InfoExtractor):
             else:
                 # We fallback to the stream_url in the original info, this
                 # cannot be always used, sometimes it can give an HTTP 404 error
-                resut['url'] = info['stream_url'] + '?client_id=' + self._CLIENT_ID,
+                result['url'] = info['stream_url'] + '?client_id=' + self._CLIENT_ID,
 
         return result
 
index 7320836177646ee41e6b07acc7b7f4fd726d4491..2f728d3dc08c6d1149fa30a43f48fce9999042ac 100644 (file)
@@ -39,7 +39,6 @@ class TouTvIE(InfoExtractor):
         mediaId = self._search_regex(
             r'"idMedia":\s*"([^"]+)"', webpage, u'media ID')
 
-        # TODO test from de
         streams_url = u'http://release.theplatform.com/content.select?pid=' + mediaId
         streams_webpage = self._download_webpage(
             streams_url, video_id, note=u'Downloading stream list')