From ca4d55a78cf93283a654f753236dde9af7a2cb2f Mon Sep 17 00:00:00 2001 From: John Hawkinson Date: Sat, 25 Mar 2017 12:56:04 -0400 Subject: [PATCH] [cbs.com:playlist] avoid continuation line It was originally there to avoid exceeding 80cols, but this is a better way. --- youtube_dl/extractor/cbs.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/youtube_dl/extractor/cbs.py b/youtube_dl/extractor/cbs.py index e0b94f731..1d491d43e 100644 --- a/youtube_dl/extractor/cbs.py +++ b/youtube_dl/extractor/cbs.py @@ -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': []}