mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-07-23 20:18:25 +00:00
Don't get a handle if we don't use it
This commit is contained in:
parent
2f1c1f0f2f
commit
dce0e96038
|
@ -327,7 +327,7 @@ class NTRSubsiteIE(NPOIE):
|
|||
def _real_extract(self, url):
|
||||
video_id = url.rstrip('/').split('/')[-1]
|
||||
|
||||
page, _ = self._download_webpage_handle(url, video_id)
|
||||
page = self._download_webpage(url, video_id)
|
||||
results = re.findall(r'data-mid="(.+_.+)"', page)
|
||||
formats = []
|
||||
for result in results:
|
||||
|
|
Loading…
Reference in a new issue