[cleanup, utils] Don't use kwargs for format_field
This commit is contained in:
parent
e121e3cee7
commit
a70635b8a1
25 changed files with 32 additions and 32 deletions
|
|
@ -15,7 +15,7 @@ class LastFMPlaylistBaseIE(InfoExtractor):
|
|||
for page_number in range(start_page_number, (last_page_number or start_page_number) + 1):
|
||||
webpage = self._download_webpage(
|
||||
url, playlist_id,
|
||||
note='Downloading page %d%s' % (page_number, format_field(last_page_number, template=' of %d')),
|
||||
note='Downloading page %d%s' % (page_number, format_field(last_page_number, None, ' of %d')),
|
||||
query={'page': page_number})
|
||||
page_entries = [
|
||||
self.url_result(player_url, 'Youtube')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue