1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2025-02-17 01:17:54 +01:00

[cbs.com:playlist] avoid continuation line

It was originally there to avoid exceeding 80cols, but this is a better way.
This commit is contained in:
John Hawkinson 2017-03-25 12:56:04 -04:00
parent 7fc3a7d09f
commit ca4d55a78c

View File

@ -96,10 +96,10 @@ class CBSShowIE(InfoExtractor):
if (clipdata.get('id')):
# http://www.cbs.com/carousels/videosBySection/241426/offset/0/limit/15/xs/0/
# => {id: 241426, title: "Clips",
clips_url = \
urljoin(url,
'/carousels/videosBySection/%d/offset/0/limit/15/xs/0'
% clipdata['id'])
clips_url = urljoin(
url,
'/carousels/videosBySection/%d/offset/0/limit/15/xs/0'
% clipdata['id'])
clips = self.carousel_playlist(clips_url, 'clips')
else:
clips = {'entries': []}