Skip to content

Commit

Permalink
[crunchyroll] Future-proof XML element checks(closes #15013)
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine committed Dec 17, 2017
1 parent 06dbcd7 commit 3dfa9ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions youtube_dl/extractor/crunchyroll.py
Expand Up @@ -392,7 +392,7 @@ def _get_subtitles(self, video_id, webpage):
'Downloading subtitles for ' + sub_name, data={
'subtitle_script_id': sub_id,
})
if not sub_doc:
if sub_doc is None:
continue
sid = sub_doc.get('id')
iv = xpath_text(sub_doc, 'iv', 'subtitle iv')
Expand Down Expand Up @@ -479,9 +479,9 @@ def _real_extract(self, url):
'video_quality': stream_quality,
'current_page': url,
})
if streamdata:
if streamdata is not None:
stream_info = streamdata.find('./{default}preload/stream_info')
if stream_info:
if stream_info is not None:
stream_infos.append(stream_info)
stream_info = self._call_rpc_api(
'VideoEncode_GetStreamInfo', video_id,
Expand All @@ -490,7 +490,7 @@ def _real_extract(self, url):
'video_format': stream_format,
'video_encode_quality': stream_quality,
})
if stream_info:
if stream_info is not None:
stream_infos.append(stream_info)
for stream_info in stream_infos:
video_encode_id = xpath_text(stream_info, './video_encode_id')
Expand Down

0 comments on commit 3dfa9ec

Please sign in to comment.