fixes mapping for openlibrary isbn10 field

This commit is contained in:
Mouse Reeve 2020-05-04 10:42:48 -07:00
parent d990a5effd
commit 2c1e7b8ecc

View file

@ -18,6 +18,7 @@ class Connector(AbstractConnector):
get_first = lambda a: a[0]
self.key_mappings = {
'isbn_13': ('isbn_13', get_first),
'isbn_10': ('isbn_10', get_first),
'oclc_numbers': ('oclc_number', get_first),
'lccn': ('lccn', get_first),
}