]> Raphaƫl G. Git Repositories - youtubedl/blobdiff - youtube_dl/extractor/vk.py
New upstream version 2017.12.31
[youtubedl] / youtube_dl / extractor / vk.py
index 105e172d539d4376e4534df31266c489f3d62518..d4838b3e5f59410c7e3db3b99823261d51350925 100644 (file)
@@ -67,7 +67,7 @@ class VKBaseIE(InfoExtractor):
 
         login_page = self._download_webpage(
             'https://login.vk.com/?act=login', None,
-            note='Logging in as %s' % username,
+            note='Logging in',
             data=urlencode_postdata(login_form))
 
         if re.search(r'onLoginFailed', login_page):
@@ -414,7 +414,7 @@ class VKIE(VKBaseIE):
 
         view_count = str_to_int(self._search_regex(
             r'class=["\']mv_views_count[^>]+>\s*([\d,.]+)',
-            info_page, 'view count', fatal=False))
+            info_page, 'view count', default=None))
 
         formats = []
         for format_id, format_url in data.items():