From: Sergey M․ Date: Sun, 6 Sep 2015 01:20:47 +0000 (+0600) Subject: [extractor/common] Extract submit inputs X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=be0e5dbd8356e92f8032d4cf8be2e668f1b30539;p=youtube-dl [extractor/common] Extract submit inputs --- diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 39cef9c5b..5eeeda08d 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -733,7 +733,7 @@ class InfoExtractor(object): def _hidden_inputs(html): hidden_inputs = {} for input in re.findall(r']+)>', html): - if not re.search(r'type=(["\'])hidden\1', input): + if not re.search(r'type=(["\'])(?:hidden|submit)\1', input): continue name = re.search(r'name=(["\'])(?P.+?)\1', input) if not name: