[cleanup] Use format_field where applicable
This commit is contained in:
parent
0bfc53d05c
commit
e0ddbd02bd
26 changed files with 59 additions and 52 deletions
|
|
@ -6,6 +6,7 @@ import re
|
|||
from .common import InfoExtractor
|
||||
from ..compat import compat_str
|
||||
from ..utils import (
|
||||
format_field,
|
||||
int_or_none,
|
||||
js_to_json,
|
||||
try_get,
|
||||
|
|
@ -72,7 +73,7 @@ class JojIE(InfoExtractor):
|
|||
r'(\d+)[pP]\.', format_url, 'height', default=None)
|
||||
formats.append({
|
||||
'url': format_url,
|
||||
'format_id': '%sp' % height if height else None,
|
||||
'format_id': format_field(height, template='%sp'),
|
||||
'height': int(height),
|
||||
})
|
||||
if not formats:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue