fix for movieposterdb urls that do not exist
This commit is contained in:
parent
7202fcb391
commit
1ef34da4d1
1 changed files with 8 additions and 7 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue