diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-09-08 17:24:34 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-09-08 17:24:34 +0700 |
commit | 13ef64fd9340794e214ba64c258fa0999fbd0a17 (patch) | |
tree | baa971f2e141bbffe2e2a01681c1c51cdb635382 | |
parent | 6f9f3340bb4c837d86067856e12232fc9695e698 (diff) |
[motherless] PEP 8 (#17455)
-rw-r--r-- | youtube_dl/extractor/motherless.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/motherless.py b/youtube_dl/extractor/motherless.py index bed5645f2..d4bd273b6 100644 --- a/youtube_dl/extractor/motherless.py +++ b/youtube_dl/extractor/motherless.py @@ -167,9 +167,9 @@ class MotherlessGroupIE(InfoExtractor): if not entries: entries = [ self.url_result( - compat_urlparse.urljoin(base, '/' + video_id), - ie=MotherlessIE.ie_key(), video_id=video_id) - for video_id in orderedSet(re.findall( + compat_urlparse.urljoin(base, '/' + entry_id), + ie=MotherlessIE.ie_key(), video_id=entry_id) + for entry_id in orderedSet(re.findall( r'data-codename=["\']([A-Z0-9]+)', webpage))] return entries |