[xtube] Fix typo

This commit is contained in:
Sergey M․ 2020-03-14 22:58:10 +07:00
parent 4568a11802
commit 158bc5ac03
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ class XTubeIE(InfoExtractor):
duration = int_or_none(config.get('duration'))
sources = config.get('sources') or config.get('format')
if isinstance(sources, dict):
if not isinstance(sources, dict):
sources = self._parse_json(self._search_regex(
r'(["\'])?sources\1?\s*:\s*(?P<sources>{.+?}),',
webpage, 'sources', group='sources'), video_id,