diff options
Diffstat (limited to 'youtube_dl/extractor/toypics.py')
-rw-r--r-- | youtube_dl/extractor/toypics.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/toypics.py b/youtube_dl/extractor/toypics.py index 33a6988ca..34008afc6 100644 --- a/youtube_dl/extractor/toypics.py +++ b/youtube_dl/extractor/toypics.py @@ -1,5 +1,4 @@ from .common import InfoExtractor -from math import ceil import re @@ -70,7 +69,7 @@ class ToypicsUserIE(InfoExtractor): 'id': username, 'entries': [{ '_type': 'url', - 'url': url, + 'url': eurl, 'ie_key': 'Toypics', - } for url in urls] + } for eurl in urls] } |