remove unused code, only isbn lookup works

This commit is contained in:
j 2016-07-17 13:07:25 +02:00
commit f66e0fbb15
3 changed files with 10 additions and 67 deletions

View file

@ -244,7 +244,7 @@ def findMetadata(data):
}
key = ','.join(sorted(data))
if key == 'isbn':
r = meta.lookup(key, data[key])
r = meta.lookup_isbn(data[key])
if r:
response['items'].append(r)
elif key == 'author,title':