1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-03 02:55:35 +08:00

Remove unused import which was causing the build to fail

This commit is contained in:
Ricardo Reis 2017-12-19 10:14:39 +00:00 committed by GitHub
parent abce2f8175
commit 1d3374c840
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,5 @@
# coding: utf-8 # coding: utf-8
from __future__ import unicode_literals from __future__ import unicode_literals
from urlparse import urlparse
from .common import InfoExtractor from .common import InfoExtractor
@ -42,4 +41,4 @@ class VSportsIE(InfoExtractor):
'thumbnail': self._og_search_thumbnail(webpage), 'thumbnail': self._og_search_thumbnail(webpage),
'ext': 'mp4', 'ext': 'mp4',
'url': 'https://%s' % (url) 'url': 'https://%s' % (url)
} }