[vube] Fix comment count

This commit is contained in:
Philipp Hagemeister 2014-07-23 01:27:25 +02:00
parent 388841f819
commit b090af5922
2 changed files with 29 additions and 9 deletions

View file

@ -301,8 +301,12 @@ class InfoExtractor(object):
def _download_json(self, url_or_request, video_id,
note=u'Downloading JSON metadata',
errnote=u'Unable to download JSON metadata',
transform_source=None):
json_string = self._download_webpage(url_or_request, video_id, note, errnote)
transform_source=None,
fatal=True):
json_string = self._download_webpage(
url_or_request, video_id, note, errnote, fatal=fatal)
if (not fatal) and json_string is False:
return None
if transform_source:
json_string = transform_source(json_string)
try: