aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-09-16 18:47:06 +0700
committerSergey M․ <dstftw@gmail.com>2014-09-16 18:47:06 +0700
commitdc9f3568461a26e1306416ef5ea1ecdf4e9420b0 (patch)
tree1604803a1c5e8f7533d6471592453359bcbd37bc
parented86ee3b4adf0dca1b40a382ca0ade1feb798851 (diff)
downloadyoutube-dl-dc9f3568461a26e1306416ef5ea1ecdf4e9420b0.tar.xz
[ard] Remove URL path escaping
This is now implemented generic in YoutubeDL.urlopen
-rw-r--r--youtube_dl/extractor/ard.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/youtube_dl/extractor/ard.py b/youtube_dl/extractor/ard.py
index 12457f0f9..54cec1c2f 100644
--- a/youtube_dl/extractor/ard.py
+++ b/youtube_dl/extractor/ard.py
@@ -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: