aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/raywenderlich.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/raywenderlich.py')
-rw-r--r--youtube_dl/extractor/raywenderlich.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/raywenderlich.py b/youtube_dl/extractor/raywenderlich.py
index 0f061c4b2..2a90677f4 100644
--- a/youtube_dl/extractor/raywenderlich.py
+++ b/youtube_dl/extractor/raywenderlich.py
@@ -75,7 +75,7 @@ class RayWenderlichIE(InfoExtractor):
'Downloading playlist %s - add --no-playlist to just download video'
% course_id)
- lesson_ids = [lesson_id]
+ lesson_ids = set((lesson_id, ))
for lesson in re.findall(
r'(<a[^>]+\bclass=["\']lesson-link[^>]+>)', webpage):
attrs = extract_attributes(lesson)
@@ -88,10 +88,10 @@ class RayWenderlichIE(InfoExtractor):
r'/lessons/(\d+)', lesson_url, 'lesson id', default=None)
if not lesson_id:
continue
- lesson_ids.append(lesson_id)
+ lesson_ids.add(lesson_id)
entries = []
- for lesson_id in orderedSet(lesson_ids):
+ for lesson_id in sorted(lesson_ids):
entries.append(self.url_result(
smuggle_url(urljoin(url, lesson_id), {'force_video': True}),
ie=RayWenderlichIE.ie_key()))