1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-03 14:41:04 +02:00

[moviefap] Replace call to str() with compat.compat_str()

This commit is contained in:
George Brighton 2015-06-27 21:04:53 +01:00
parent 43b925ce74
commit b971abe897

View File

@ -7,6 +7,7 @@
xpath_text,
str_to_int
)
from ..compat import compat_str
class MovieFapIE(InfoExtractor):
@ -65,7 +66,7 @@ def __get_thumbnail_data(xml):
thumbnails = []
for i in range(first, last + 1):
thumbnails.append({
'url': pattern.replace('#', str(i)),
'url': pattern.replace('#', compat_str(i)),
'width': width,
'height': height
})