fix preview urls with spaces
This commit is contained in:
parent
bf0f1d94b1
commit
f3d88567dd
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ __all__ = ['BaseVideo', 'ICapVideo']
|
|||
|
||||
class VideoThumbnail(object):
|
||||
def __init__(self, url):
|
||||
self.url = url
|
||||
self.url = url.replace(' ', '%20')
|
||||
self.data = None
|
||||
|
||||
def __str__(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue