hm... or rather not
This commit is contained in:
parent
68e9886a86
commit
4782b4174a
1 changed files with 1 additions and 5 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Reference in a new issue