about summary refs log tree commit diff
path: root/youtube_dl/extractor/shared.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-14 22:36:30 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-14 22:36:30 +0600
commitf8da79f828637757889f3f35d7adfa9aabbfc721 (patch)
treec95160001699c868f5157300e6f4839bab11bff2 /youtube_dl/extractor/shared.py
parent9750e7d70eed92a6b05637465698cdd30e87a44c (diff)
downloadyoutube-dl-f8da79f828637757889f3f35d7adfa9aabbfc721.tar.gz
youtube-dl-f8da79f828637757889f3f35d7adfa9aabbfc721.tar.xz
youtube-dl-f8da79f828637757889f3f35d7adfa9aabbfc721.zip
[extractor/common] Improve _form_hidden_inputs and rename to _hidden_inputs
Diffstat (limited to 'youtube_dl/extractor/shared.py')
-rw-r--r--youtube_dl/extractor/shared.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/shared.py b/youtube_dl/extractor/shared.py
index 6e2b94e7d..a07677686 100644
--- a/youtube_dl/extractor/shared.py
+++ b/youtube_dl/extractor/shared.py
@@ -34,7 +34,7 @@ class SharedIE(InfoExtractor):
             raise ExtractorError(
                 'Video %s does not exist' % video_id, expected=True)
 
-        download_form = self._form_hidden_inputs(webpage)
+        download_form = self._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')