[canalplus] fix browsing categories

This commit is contained in:
Bezleputh 2014-05-14 21:51:54 +02:00 committed by Florent
commit 99be5d9e13
3 changed files with 2 additions and 6 deletions

View file

@ -112,7 +112,7 @@ class VideoPage(BasePage):
def parse_video_channel(self, el):
_id = el[0].text
video = CanalplusVideo(_id)
video.title = el[2][3][0].text
video.title = u'%s' % el[2][5][0].text
video.date = datetime.now()
return video