arte: Fix id2url()

The website now requires the id to be prefixed with "--" in the video page url,
to separate it from the optional keywords.
This commit is contained in:
François Revol 2013-06-04 14:36:45 +02:00
commit bd54e2329f

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