summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-09-28 01:14:14 +0600
committerSergey M․ <dstftw@gmail.com>2015-09-28 01:14:14 +0600
commit926fb62eec016db9ef23e9d8d210c8fb2e4de20e (patch)
tree520d47316004bd6a825e7eccbb49bafe05ea0b89
parent817690ff736c276835e16860957d758d92afb2fd (diff)
downloadyoutube-dl-926fb62eec016db9ef23e9d8d210c8fb2e4de20e.tar.gz
youtube-dl-926fb62eec016db9ef23e9d8d210c8fb2e4de20e.tar.xz
youtube-dl-926fb62eec016db9ef23e9d8d210c8fb2e4de20e.zip
[keek] Remove description
Since it equals title plus static suffix
-rw-r--r--youtube_dl/extractor/keek.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/youtube_dl/extractor/keek.py b/youtube_dl/extractor/keek.py
index 7e1a3f67c..dff4cb558 100644
--- a/youtube_dl/extractor/keek.py
+++ b/youtube_dl/extractor/keek.py
@@ -13,8 +13,7 @@ class KeekIE(InfoExtractor):
         'info_dict': {
             'id': 'NODfbab',
             'ext': 'mp4',
-            'title': 'test chars: "\'/\\ä<>This is a test video for youtube-dl.For more information, contact phihag@phihag.de . - Video - Videos on Keek',
-            'description': 'md5:35d42050a3ece241d5ddd7fdcc6fd896',
+            'title': 'md5:35d42050a3ece241d5ddd7fdcc6fd896',
             'uploader': 'ytdl',
             'uploader_id': 'eGT5bab',
         },
@@ -29,8 +28,7 @@ class KeekIE(InfoExtractor):
             'id': video_id,
             'url': self._og_search_video_url(webpage),
             'ext': 'mp4',
-            'title': self._og_search_title(webpage),
-            'description': self._og_search_description(webpage),
+            'title': self._og_search_description(webpage),
             'thumbnail': self._og_search_thumbnail(webpage),
             'uploader': self._search_regex(r'data-username="([^"]+)"', webpage, 'uploader', fatal=False),
             'uploader_id': self._search_regex(r'data-user-id="([^"]+)"', webpage, 'uploader id', fatal=False),