hm... or rather not

This commit is contained in:
Rolux 2008-07-25 16:58:54 +02:00
parent 68e9886a86
commit 4782b4174a

View file

@ -43,16 +43,12 @@ def getMovieData(allmovieId):
)
return data
def getPosterUrl(allmovieId):
def getMoviePoster(allmovieId):
data = getMovieData(allmovieId)
if data:
return data['poster']
return ''
def getMoviePoster(allmovieId):
# deprecated, use getPosterUrl()
return getPosterUrl(allmovieId)
def parseEntry(html, title):
return stripTags(findRe(html, '<span>%s</span>(.*?)</table>' % title))