Browse Source

[ard] Remove URL path escaping

This is now implemented generic in YoutubeDL.urlopen
totalwebcasting
Sergey M․ 10 years ago
parent
commit
dc9f356846
1 changed files with 0 additions and 3 deletions
  1. +0
    -3
      youtube_dl/extractor/ard.py

+ 0
- 3
youtube_dl/extractor/ard.py View File

@ -51,9 +51,6 @@ class ARDMediathekIE(InfoExtractor):
else:
video_id = m.group('video_id')
urlp = compat_urllib_parse_urlparse(url)
url = urlp._replace(path=compat_urllib_parse.quote(urlp.path.encode('utf-8'))).geturl()
webpage = self._download_webpage(url, video_id)
if '>Der gewünschte Beitrag ist nicht mehr verfügbar.<' in webpage:


Loading…
Cancel
Save