ignore amazon utf-8 errors
This commit is contained in:
parent
32b31cd70c
commit
60ab6a5244
1 changed files with 1 additions and 1 deletions
|
@ -89,5 +89,5 @@ def lookup(id):
|
|||
return r
|
||||
|
||||
def amazon_lookup(asin):
|
||||
html = read_url('http://www.amazon.com/dp/%s' % asin).decode('utf-8')
|
||||
html = read_url('http://www.amazon.com/dp/%s' % asin).decode('utf-8', 'ignore')
|
||||
return list(set(find_isbns(find_re(html, 'Formats</h3>.*?</table'))))
|
||||
|
|
Loading…
Reference in a new issue