mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 17:18:01 +01:00
[golem] Don't omit positional argument specifiers
Required by Python 2.6.
This commit is contained in:
parent
6a5af6acb9
commit
70752ccefd
1 changed files with 9 additions and 9 deletions
|
@ -22,7 +22,7 @@ class GolemIE(InfoExtractor):
|
|||
}
|
||||
}
|
||||
|
||||
_CONFIG = 'https://video.golem.de/xml/{}.xml'
|
||||
_CONFIG = 'https://video.golem.de/xml/{0}.xml'
|
||||
_PREFIX = 'http://video.golem.de'
|
||||
|
||||
def _warn(self, fmt, *args):
|
||||
|
@ -33,7 +33,7 @@ def _extract_format(self, elem):
|
|||
|
||||
url = elem.findtext('./url')
|
||||
if url == '':
|
||||
self._warn("{}: url: empty, skipping", format_id)
|
||||
self._warn("{0}: url: empty, skipping", format_id)
|
||||
return None
|
||||
|
||||
fmt = {
|
||||
|
@ -44,7 +44,7 @@ def _extract_format(self, elem):
|
|||
try:
|
||||
_, ext = elem.findtext('./filename', '').rsplit('.', 1)
|
||||
except ValueError:
|
||||
self._warn('{}: ext: missing extension', format_id)
|
||||
self._warn('{0}: ext: missing extension', format_id)
|
||||
else:
|
||||
fmt['ext'] = ext
|
||||
|
||||
|
@ -53,21 +53,21 @@ def _extract_format(self, elem):
|
|||
try:
|
||||
fmt['filesize'] = int(filesize)
|
||||
except ValueError as e:
|
||||
self._warn('{}: filesize: {}', format_id, e)
|
||||
self._warn('{0}: filesize: {1}', format_id, e)
|
||||
|
||||
width = elem.get('width')
|
||||
if width is not None:
|
||||
try:
|
||||
fmt['width'] = int(width)
|
||||
except ValueError as e:
|
||||
self._warn('{}: width: {}', format_id, e)
|
||||
self._warn('{0}: width: {1}', format_id, e)
|
||||
|
||||
height = elem.get('height')
|
||||
if height is not None:
|
||||
try:
|
||||
fmt['height'] = int(height)
|
||||
except ValueError as e:
|
||||
self._warn('{}: height: {}', format_id, e)
|
||||
self._warn('{0}: height: {1}', format_id, e)
|
||||
|
||||
return fmt
|
||||
|
||||
|
@ -84,14 +84,14 @@ def _extract_thumbnail(self, elem):
|
|||
try:
|
||||
thumb['width'] = int(width)
|
||||
except ValueError as e:
|
||||
self._warn('thumbnail: width: {}', e)
|
||||
self._warn('thumbnail: width: {0}', e)
|
||||
|
||||
height = elem.get('height')
|
||||
if height is not None:
|
||||
try:
|
||||
thumb['height'] = int(height)
|
||||
except ValueError as e:
|
||||
self._warn('thumbnail: height: {}', e)
|
||||
self._warn('thumbnail: height: {0}', e)
|
||||
|
||||
return thumb
|
||||
|
||||
|
@ -126,6 +126,6 @@ def _real_extract(self, url):
|
|||
try:
|
||||
info['duration'] = round(float(playtime))
|
||||
except ValueError as e:
|
||||
self._warn('duration: {}', e)
|
||||
self._warn('duration: {0}', e)
|
||||
|
||||
return info
|
||||
|
|
Loading…
Reference in a new issue