mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-11 05:09:08 +01:00
[moviefap] Replace call to str()
with compat.compat_str()
This commit is contained in:
parent
43b925ce74
commit
b971abe897
@ -7,6 +7,7 @@ from ..utils import (
|
|||||||
xpath_text,
|
xpath_text,
|
||||||
str_to_int
|
str_to_int
|
||||||
)
|
)
|
||||||
|
from ..compat import compat_str
|
||||||
|
|
||||||
|
|
||||||
class MovieFapIE(InfoExtractor):
|
class MovieFapIE(InfoExtractor):
|
||||||
@ -65,7 +66,7 @@ class MovieFapIE(InfoExtractor):
|
|||||||
thumbnails = []
|
thumbnails = []
|
||||||
for i in range(first, last + 1):
|
for i in range(first, last + 1):
|
||||||
thumbnails.append({
|
thumbnails.append({
|
||||||
'url': pattern.replace('#', str(i)),
|
'url': pattern.replace('#', compat_str(i)),
|
||||||
'width': width,
|
'width': width,
|
||||||
'height': height
|
'height': height
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user