fix for movieposterdb urls that do not exist

This commit is contained in:
Rolux 2009-08-20 20:04:08 +02:00
parent 7202fcb391
commit 1ef34da4d1

View file

@ -23,6 +23,7 @@ def getId(url):
def getPostersByUrl(url): def getPostersByUrl(url):
posters = [] posters = []
html = getUrlUnicode(url) html = getUrlUnicode(url)
if not "The movie you requested is not found" in html:
results = re.compile('<a href="(http://www.movieposterdb.com/group/.*?)">', re.DOTALL).findall(html) results = re.compile('<a href="(http://www.movieposterdb.com/group/.*?)">', re.DOTALL).findall(html)
for result in results: for result in results:
posters += getPostersByUrl(result) posters += getPostersByUrl(result)