fix preview urls with spaces

This commit is contained in:
Romain Bignon 2010-08-03 20:24:42 +02:00
commit f3d88567dd

View file

@ -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):