Fix bug thumbnail field always return "spacer.gif" in youjizz module

This commit is contained in:
Vincent Texier 2013-12-22 15:14:54 +01:00 committed by Romain Bignon
commit 35dfb940c8

View file

@ -41,7 +41,7 @@ class IndexPage(BasePage):
video = YoujizzVideo(_id)
video.thumbnail = BaseImage(span.find('.//img').attrib['src'])
video.thumbnail = BaseImage(span.find('.//img').attrib['data-original'])
video.thumbnail.url = video.thumbnail.id
title_el = self.parser.select(span, 'span#title1', 1)