diff options
author | Remita Amine <remitamine@gmail.com> | 2016-08-29 19:26:53 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2016-08-29 19:26:53 +0100 |
commit | da30a20a4d8b0ece61c271a5d0f0c6de2817ef5f (patch) | |
tree | 3f2db33bc80017ebdc3c4e20e24fdac91ad0bb03 /youtube_dl/extractor/cnn.py | |
parent | 1fe48afea5f203cbcb29c0d2984b7b850df8103f (diff) |
[turner,cnn] move a check for wrong timestamp to CNNIE
Diffstat (limited to 'youtube_dl/extractor/cnn.py')
-rw-r--r-- | youtube_dl/extractor/cnn.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/cnn.py b/youtube_dl/extractor/cnn.py index bb42f35bd..a51b239cc 100644 --- a/youtube_dl/extractor/cnn.py +++ b/youtube_dl/extractor/cnn.py @@ -83,6 +83,10 @@ class CNNIE(TurnerBaseIE): }, } + def _extract_timestamp(self, video_data): + # TODO: fix timestamp extraction + return None + def _real_extract(self, url): sub_domain, path, page_title = re.match(self._VALID_URL, url).groups() if sub_domain not in ('money', 'edition'): |