diff options
Diffstat (limited to 'youtube_dl/extractor/tenplay.py')
| -rw-r--r-- | youtube_dl/extractor/tenplay.py | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/youtube_dl/extractor/tenplay.py b/youtube_dl/extractor/tenplay.py index f6694149b..02a31a609 100644 --- a/youtube_dl/extractor/tenplay.py +++ b/youtube_dl/extractor/tenplay.py @@ -27,10 +27,10 @@ class TenPlayIE(InfoExtractor):      }      _video_fields = [ -        "id", "name", "shortDescription", "longDescription", "creationDate", -        "publishedDate", "lastModifiedDate", "customFields", "videoStillURL", -        "thumbnailURL", "referenceId", "length", "playsTotal", -        "playsTrailingWeek", "renditions", "captioning", "startDate", "endDate"] +        'id', 'name', 'shortDescription', 'longDescription', 'creationDate', +        'publishedDate', 'lastModifiedDate', 'customFields', 'videoStillURL', +        'thumbnailURL', 'referenceId', 'length', 'playsTotal', +        'playsTrailingWeek', 'renditions', 'captioning', 'startDate', 'endDate']      def _real_extract(self, url):          webpage = self._download_webpage(url, url)  | 
