[sexu] Ensure height is int

This commit is contained in:
Sergey M․ 2017-06-09 00:30:23 +07:00
parent 34646967ba
commit f5521ea209
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with 3 additions and 2 deletions

View File

@ -32,8 +32,9 @@ class SexuIE(InfoExtractor):
formats = [{
'url': source['file'].replace('\\', ''),
'format_id': source.get('label'),
'height': self._search_regex(
r'^(\d+)[pP]', source.get('label', ''), 'height', default=None),
'height': int(self._search_regex(
r'^(\d+)[pP]', source.get('label', ''), 'height',
default=None)),
} for source in sources if source.get('file')]
self._sort_formats(formats)