aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/shared.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-10 21:55:22 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-10 21:55:22 +0600
commit3b16d803c9633b7f3653d3d6d8022ed8642a09d5 (patch)
treed6e5b1cdccee50c22030f58c57e391652af75c91 /youtube_dl/extractor/shared.py
parentde195c23a6837d1526198320561feba74886b9df (diff)
downloadyoutube-dl-3b16d803c9633b7f3653d3d6d8022ed8642a09d5.zip
youtube-dl-3b16d803c9633b7f3653d3d6d8022ed8642a09d5.tar.gz
youtube-dl-3b16d803c9633b7f3653d3d6d8022ed8642a09d5.tar.bz2
[shared] Use `_form_hidden_inputs`
Diffstat (limited to 'youtube_dl/extractor/shared.py')
-rw-r--r--youtube_dl/extractor/shared.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/extractor/shared.py b/youtube_dl/extractor/shared.py
index 9f3e944..7fb68bc 100644
--- a/youtube_dl/extractor/shared.py
+++ b/youtube_dl/extractor/shared.py
@@ -35,8 +35,7 @@ class SharedIE(InfoExtractor):
raise ExtractorError(
'Video %s does not exist' % video_id, expected=True)
- download_form = dict(re.findall(
- r'<input type="hidden" name="([^"]+)" value="([^"]*)"', webpage))
+ download_form = self._form_hidden_inputs(webpage)
request = compat_urllib_request.Request(
url, compat_urllib_parse.urlencode(download_form))
request.add_header('Content-Type', 'application/x-www-form-urlencoded')