1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-17 22:55:42 +07:00

[addanime] improve

This commit is contained in:
Philipp Hagemeister
2013-08-28 04:25:38 +02:00
4 changed files with 10 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ def _real_extract(self, url):
duration = 60 * int(m.group('minutes')) + int(m.group('seconds'))
formats = []
for formats_el in li.findall('.//li/a'):
for formats_el in li.findall('.//a'):
if formats_el.attrib['class'] != 'OverlayPanel':
continue
target = formats_el.attrib['target']