diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-23 22:10:26 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-23 22:10:26 +0100 | 
| commit | 27f8b0994e9924724c974f46435552d401f5fc08 (patch) | |
| tree | fa3ab829cc1e81a43f955ca9442ce59dfee6440b /youtube_dl/extractor/dailymotion.py | |
| parent | e311b6389a7582eef6f3f8ca4b41edd4efd6cd55 (diff) | |
| parent | fab6d4c048f56aa1c36897396a7fb590ae415d66 (diff) | |
Merge remote-tracking branch 'jtwaleson/master'
Diffstat (limited to 'youtube_dl/extractor/dailymotion.py')
| -rw-r--r-- | youtube_dl/extractor/dailymotion.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py index 22cdcdfa5..936c13cd6 100644 --- a/youtube_dl/extractor/dailymotion.py +++ b/youtube_dl/extractor/dailymotion.py @@ -114,7 +114,7 @@ class DailymotionIE(DailymotionBaseInfoExtractor, SubtitlesInfoExtractor):          embed_page = self._download_webpage(embed_url, video_id,                                              'Downloading embed page')          info = self._search_regex(r'var info = ({.*?}),$', embed_page, -            'video info', flags=re.MULTILINE) +                                  'video info', flags=re.MULTILINE)          info = json.loads(info)          if info.get('error') is not None:              msg = 'Couldn\'t get video, Dailymotion says: %s' % info['error']['title'] @@ -208,7 +208,7 @@ class DailymotionPlaylistIE(DailymotionBaseInfoExtractor):              if re.search(self._MORE_PAGES_INDICATOR, webpage) is None:                  break          return [self.url_result('http://www.dailymotion.com/video/%s' % video_id, 'Dailymotion') -                   for video_id in orderedSet(video_ids)] +                for video_id in orderedSet(video_ids)]      def _real_extract(self, url):          mobj = re.match(self._VALID_URL, url)  | 
