correctly parse input of get_video

This commit is contained in:
Romain Bignon 2013-08-02 14:11:18 +02:00
commit a2c5566e96
2 changed files with 15 additions and 12 deletions

View file

@ -27,7 +27,7 @@ __all__ = ['ArteVideo','ArteLiveVideo']
class ArteVideo(BaseVideo):
@classmethod
def id2url(cls, _id):
return 'http://videos.arte.tv/fr/videos/--%s.html' % _id
return 'http://videos.arte.tv/fr/videos/%s.html' % _id
class ArteLiveVideo(BaseVideo):