Browse Source

[vk] Modernize

totalwebcasting
Sergey M․ 8 years ago
parent
commit
f2bb8c036a
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      youtube_dl/extractor/vk.py

+ 3
- 4
youtube_dl/extractor/vk.py View File

@ -217,11 +217,10 @@ class VKIE(InfoExtractor):
value, domain = remixlhk.groups()
self._set_cookie(domain, 'remixlhk', value)
request = sanitized_Request(
'https://login.vk.com/?act=login',
urlencode_postdata(login_form))
login_page = self._download_webpage(
request, None, note='Logging in as %s' % username)
'https://login.vk.com/?act=login', None,
note='Logging in as %s' % username,
data=urlencode_postdata(login_form))
if re.search(r'onLoginFailed', login_page):
raise ExtractorError(


Loading…
Cancel
Save