fix parsing authors on anyclip videos

This commit is contained in:
Romain Bignon 2012-06-08 11:24:57 +02:00
commit 9294f3e964
2 changed files with 7 additions and 5 deletions

View file

@ -27,7 +27,7 @@ __all__ = ['DailymotionVideo']
class DailymotionVideo(BaseVideo):
def __init__(self, *args, **kwargs):
BaseVideo.__init__(self, *args, **kwargs)
self.ext = 'flv'
self.ext = u'flv'
@classmethod
def id2url(cls, _id):